/* --------------------------------------------------------------------------
   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;
  }
  
  /* --------------------------------------------------------------------------
  Button
  -------------------------------------------------------------------------- */
  
  .lp-listButton {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 12px;
  }
  
  @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;
  }

  @media (max-width: 1024px) {
    .lp-buttonConversion.of-download {
      margin-bottom: 15px;
    }
  }
  
  .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-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;
    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;
    }
  }
  
  .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: 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: 40px;
    }
  }
  
  .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;
  }
  
  .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-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.10);
    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;
  }

  /* --------------------------------------------------------------------------
   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-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;
  }
  
  /* --------------------------------------------------------------------------
     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-timingCard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    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-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);
    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: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
  }
  
  .lp-timingCard p {
    color: var(--neutral-700);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  
  /* --------------------------------------------------------------------------
     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);
  }

  .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-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);
  }
  
  /* --------------------------------------------------------------------------
     Use cases
     -------------------------------------------------------------------------- */
  .lp-caseGrid {
    counter-reset: lp-case;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  @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);
  }
  
  .lp-case h4 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
  }
  
  .lp-case h4::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-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: rgba(255, 255, 255, 0.60);
    text-align: center;
    font-size: 16px;
    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: 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;
    }
  }
  
  /* --------------------------------------------------------------------------
     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-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;
  }
  
  .lp-media {
    display: flex;
    align-items: center;
    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;
  }