/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --color-brand: #e4002b;
  --color-brand-dark: #9b0c23;
  /* Surfaces & headings */
  --color-navy: #0f1a2e;
  --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: 64px;
}

/* --------------------------------------------------------------------------
     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;
}

.only-sp {
  display: none;
}

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

  .only-pc {
    display: none;
  }
}

.is-center {
  text-align: center;
}

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

.lp-listButton {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  justify-content: center;
}

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

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

@media (min-width: 1025px) {
  .lp-listButton--column {
    flex-direction: column;
    align-items: normal;
  }
}

.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(0.4, 0, 0.2, 1);
  transition-duration: 0.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: 16px 8px;
  min-height: 60px;
}

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

.lp-buttonConversion .lp-buttonConversion-body::before {
  flex-shrink: 0;
}

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

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

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

.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;
    padding-right: 22px;
  }
}

.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: 16px 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;
  }
}

.text-link-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .text-link-wrap {
    gap: 8px;
  }
}

.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;
}

.text-link--small {
  font-size: 18px;
}

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

@media (hover: hover) {
  .text-link:hover {
    color: #9b0c23;
  }
}

.text-link.of-download-head::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%20100%20100%22%20fill%3d%22%23ea0437%22%3e%3cpath%20d%3d%22M50,69%2e6l%2d24%2d24l6%2e4%2d6%2e4L45,51%2e8V15c0%2d5%2e5,4%2e5%2d10,10%2d10v46%2e9l12%2e7%2d12%2e7l6%2e4,6%2e4L50,69%2e6z%20M85,50v35H15V50H5v35c0,5%2e5,4%2e5,10,10,10h70c5%2e5,0,10%2d4%2e5,10%2d10V50H85z%22%2f%3e%3c%2fsvg%3e");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: middle;
}

@media (hover: hover) {
  .text-link.of-download-head:hover::before {
    background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%20100%20100%22%20fill%3d%22%239b0c23%22%3e%3cpath%20d%3d%22M50,69%2e6l%2d24%2d24l6%2e4%2d6%2e4L45,51%2e8V15c0%2d5%2e5,4%2e5%2d10,10%2d10v46%2e9l12%2e7%2d12%2e7l6%2e4,6%2e4L50,69%2e6z%20M85,50v35H15V50H5v35c0,5%2e5,4%2e5,10,10,10h70c5%2e5,0,10%2d4%2e5,10%2d10V50H85z%22%2f%3e%3c%2fsvg%3e");
  }
}

.link-arrow {
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s;
}

.link-arrow--small {
  font-size: 18px;
}

@media (max-width: 1024px) {
  .link-arrow,
  .link-arrow--small {
    font-size: 16px;
  }
}

@media (hover: hover) {
  .link-arrow:hover {
    color: #9b0c23;
  }
}

.link-arrow::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");
}

@media (hover: hover) {
  .link-arrow: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;
  }
}

.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-quaternary {
  fill: #838079;
}

.lp-textPhone-icon .of-iconColor-primary {
  fill: #319f2d;
}

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

/* --------------------------------------------------------------------------
     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;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 32px;
}

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

.lp-heroVisual {
  position: absolute;
  top: 50%;
  right: clamp(-320px, -1200px + 85.938vw, -100px);
  transform: translateY(-50%);
  max-width: 700px;
  width: 100%;
  flex-shrink: 0;
  z-index: -1;
}

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

.lp-heroFigure img {
  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: 44px;
  font-style: normal;
}

.lp-hero h1 em.is-small {
  font-size: 36px;
}

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

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

  .lp-hero h1 em.is-small {
    font-size: 40px;
  }
}

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

@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;
}

.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;
  justify-content: flex-start;
}

.lp-heroStats {
  display: flex;
  gap: 24px;
  width: 100%;
}

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

.lp-heroStat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 130px;
  gap: 16px;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  line-height: 1;
}

@media (max-width: 1024px) {
  .lp-heroStat {
    min-width: auto;
    padding: 16px 0;
    flex: 1;
  }
}

.lp-heroStatLabel {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
}

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

.lp-heroStatValue {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
}

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

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

.lp-heroKeywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  max-width: 500px;
  list-style: none;
}

.lp-heroKeywordsItem {
  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);
}

/* --------------------------------------------------------------------------
   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;
}

.lp-sectionHeader {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-sectionHeading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-sectionInner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

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

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

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

/* --------------------------------------------------------------------------
     Three Column Grid
     -------------------------------------------------------------------------- */
.lp-3ColumnGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

/* --------------------------------------------------------------------------
     Overview
     -------------------------------------------------------------------------- */
.lp-overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
  background: var(--color-white);
}

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

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

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

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

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

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

.lp-overviewDlItem {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.5;
}

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

.lp-overviewDlTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
  line-height: 1;
}

.lp-overviewDlTitle::after {
  content: "：";
}

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


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

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

.lp-timingGrid--col3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.lp-timingCard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  padding: 24px;
  background: var(--color-white);
}

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

.lp-timingCard + .lp-timingCard::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 9px;
  height: 15px;
  transform: translate(-50%, -50%);
  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%200.707153L7.20709%207.20715L0.707092%2013.7072' stroke='%23111318' stroke-width='2'/%3E%3C/svg%3E");
  pointer-events: none;
}

@media (max-width: 1024px) {
  .lp-timingCard + .lp-timingCard::before {
    top: -26px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.lp-timingCard--highlight {
  background: rgba(228, 0, 43, 0.05);
}

@media (max-width: 1024px) {
  .lp-timingCard--highlight {
    margin-top: 47px;
  }

  .lp-timingCard + .lp-timingCard--highlight::before {
    top: -70px;
  }
}

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

.lp-timingBubble {
  position: absolute;
  top: -49px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  background-color: var(--color-brand);
  width: max-content;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  border-radius: 100px;
}

@media (max-width: 1024px) {
  .lp-timingBubble {
    top: -47px;
    padding: 10px 16px;
  }
}

.lp-timingBubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 11px;
  height: 11px;
  transform: translateX(-50%);
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='8' viewBox='0 0 9 8'%3E%3Cpath d='M4.89862%206.75C4.51372%207.41667%203.55147%207.41667%203.16657%206.75L0.135479%201.5C-0.249421%200.833334%200.231704%200%201.0015%200H7.06368C7.83348%200%208.31461%200.833333%207.92971%201.5L4.89862%206.75Z' fill='%23E4002B'/%3E%3C/svg%3E");
}

.lp-timingHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.lp-timingNum {
  width: 32px;
  height: 32px;
  background: #0f1a2e;
  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;
  padding-bottom: 2px;
}

.lp-timingNum--highlight {
  background: var(--color-brand);
}

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

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


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

/* --------------------------------------------------------------------------
     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-compareColBlue {
  background: var(--color-link);
}

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

.lp-compareTable thead th.lp-compareColPurple {
  background: #a61ade;
}

.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);
}

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

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

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

/* --------------------------------------------------------------------------
     Product block
     -------------------------------------------------------------------------- */
.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 {
  padding: 24px;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--neutral-200);
}

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

.lp-productHead--alignCenter {
  align-items: center;
}

.lp-productHeader {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.lp-productNameWrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.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 {
    padding: 16px 10px;
  }
}

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

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

.lp-productGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

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

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


.lp-product--subgrid {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 0;
  min-height: 0;
}


.lp-product--topRed {
  border-top: 8px solid var(--color-brand);
}

.lp-product--topPurple {
  border-top: 8px solid #a61ade;
}

.lp-product--topBlue {
  border-top: 8px solid #0071ce;
}

.lp-product--subgrid .lp-productHead {
  background: var(--neutral-50);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.lp-product--subgrid .lp-productBody {
  padding: 24px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  min-height: 0;
}

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

.lp-productSpecs dt {
  color: var(--color-text);
  margin-bottom: 6px;
  font-weight: 700;
}

.lp-productSpecs dd {
  margin: 0;
  color: #48484C;
}

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

.lp-productUsage {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-productUsageItem {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

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

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

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

.lp-productThumb--width100 {
  width: 100%;
}

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


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

@media (min-width: 1025px) {
  .lp-caseGrid:has(> :only-child) {
    grid-template-columns: 1fr;
  }

  .lp-caseGrid:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-caseGrid:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    margin-inline: auto;
  }
}

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

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

.lp-caseHeader {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.lp-case h3 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.lp-case h3::before {
  counter-increment: lp-case;
  content: counter(lp-case);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  background: var(--color-brand);
  border-radius: 50%;
}

.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);
}

.lp-caseImage {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
     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 {
  display: flex;
  flex-direction: column;
  gap: 48px;
  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-cta:has(+ .lp-breadcrumb) {
  padding-bottom: 64px;
}

@media (max-width: 1024px) {
  .lp-cta:has(+ .lp-breadcrumb) {
    padding-bottom: 80px;
  }
}

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

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

.lp-ctaLead {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

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

/* --------------------------------------------------------------------------
     Footer
     -------------------------------------------------------------------------- */
.lp-layout-footer {
  background: #000;
  color: #cbcbcb;
  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: 12px;
}

.lp-layout-footer-list > li::before {
  display: block;
  width: 1px;
  height: 13px;
  margin-right: 16px;
  background: #cbcbcb;
  content: "";
}

.lp-layout-footer-list > li a {
  color: #cbcbcb;
  font-size: 12px;
  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;
  }
}

/* --------------------------------------------------------------------------
     Callout & media
     -------------------------------------------------------------------------- */
.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-calloutTitle {
  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;
}

.lp-media {
  display: flex;
  gap: 25px;
}

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

.lp-mediaImage {
  max-width: 480px;
  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;
}

#breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

@media (max-width: 1024px) {
  #breadcrumb ul {
    justify-content: center;
    gap: 12px 8px;
  }
}

.lp-breadcrumb {
  background: #fff;
  padding-top: 18px;
  padding-bottom: 20px;
}

#breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

#breadcrumb li {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  color: #6f6f6f;
}

#breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4.5px;
  height: 4.5px;
  border-top: 1px solid #6f6f6f;
  border-right: 1px solid #6f6f6f;
  transform: rotate(45deg);
  margin-left: 8px;
}

#breadcrumb a {
  color: #6f6f6f;
  padding-bottom: 2px;
  box-shadow: 0 1px 0 0 #6f6f6f;
  transition: box-shadow 0.2s;
}

@media (hover: hover) {
  #breadcrumb a:hover {
    box-shadow: 0 2px 0 0 #6f6f6f;
  }
}

.lp-textLink {
  color: var(--color-text);
  text-decoration: underline;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .lp-textLink:hover {
    color: var(--color-brand);
  }
}


/* --------------------------------------------------------------------------
   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;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  @media (max-width: 1024px) {
    .lp-methodCardDetails {
      gap: 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);
  }

  .lp-methodCardDetailItem {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px;
  }

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

  .lp-methodCardDetails dt {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    line-height: 1.2;
  }
  
  @media (max-width: 1024px) {
    .lp-methodCardDetails dt {
      text-align: left;
    }
  }
  
  .lp-methodCardDetails dd {
    margin: 0;
    font-size: 16px;
    color: var(--neutral-700);
  }

  /* --------------------------------------------------------------------------
   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;
}

/* --------------------------------------------------------------------------
   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;
  }

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

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

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

.lp-appsCard h3 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.lp-appsCardTitle {
  min-width: 0;
  width: 100%;
}

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

.lp-appsCardImage {
  max-width: 100%;

  & img {
    width: 100%;
  }
}

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

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

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

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

.lp-appsTagYellow {
  background: rgba(222, 145, 2, 0.05);
  color: #E26C0C;;
}

.lp-appsCardFooter {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
  font-size: 12px;
  color: var(--neutral-700);
  line-height: 1;
  gap: 8px;
  margin-top: auto;
}

.lp-appsCardFooterLink {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--color-brand);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.lp-appsCardFooterLink::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 15px;
  background: 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") no-repeat center / contain;
}

.lp-appsCardFooterText {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 700;
}
