/* === Base Overrides === */
.subscription .wrap {
  max-width: 100% !important;
  padding: 0 !important;
}

.subscription * {
  box-sizing: border-box;
}

/*
  fluid side padding: 20px@375px → 120px@1280px
  clamp(20px, calc(11vw - 21px), 120px)
*/
.lp-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, calc(11vw - 21px), 120px);
}

/* === HERO === */
.lp-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.2) 33%, rgba(13, 27, 42, .07) 100%);
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, calc(4.3vw + 24px), 80px) clamp(20px, calc(11vw - 21px), 120px);
}

.lp-hero__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1.5;
  min-width: 0;
}

.lp-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 1);
}

.lp-hero__chip img {
  height: 55px;
  width: auto;
}

.lp-hero__chip span {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(14px, calc(1.1vw + 9.9px), 24px);
  font-weight: 700;
  color: #f0e6d8;
}

.lp-hero__title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(38px, calc(3.76vw + 24px), 72px);
  font-weight: 800;
  color: #f0e6d8;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 1);
  margin: 0;
}

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

.lp-hero__stat {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.lp-hero__stat-num {
  font-family: 'Funnel Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #C8A000;
}

.lp-hero__stat-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #C8A000;
}

.lp-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C8A000;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  padding: 18px 36px;
  font-family: 'Funnel Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.lp-hero__btn i {
  width: 20px;
  height: 20px;
}

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

.lp-hero__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

/* === WHY NOW === */
.lp-why {
  background: #fff;
  padding: 60px 0;
}

.lp-why__hdr {
  margin-bottom: 56px;
}

.lp-why__title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(28px, calc(2.2vw + 20px), 48px);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin: 0 0 16px;
}

.lp-why__sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

.lp-why__cards {
  display: flex;
  gap: 20px;
  margin-bottom: 56px;
}

.lp-why__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid;
  overflow: hidden;
}

.lp-why__card--brown {
  background: #FBF8E5;
  border-color: #E5D880;
}

.lp-why__card--blue {
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.lp-why__card--green {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.lp-why__card-bar {
  height: 6px;
  flex-shrink: 0;
}

.lp-why__card--brown .lp-why__card-bar {
  background: #C8A000;
}

.lp-why__card--blue .lp-why__card-bar {
  background: #1E3A5F;
}

.lp-why__card--green .lp-why__card-bar {
  background: #16A34A;
}

.lp-why__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
}

.lp-why__card-label {
  font-family: 'Funnel Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
}

.lp-why__card--brown .lp-why__card-label {
  color: #C8A000;
}

.lp-why__card--blue .lp-why__card-label {
  color: #1E3A5F;
}

.lp-why__card--green .lp-why__card-label {
  color: #16A34A;
}

.lp-why__card-en {
  font-family: 'Funnel Sans', sans-serif;
  font-size: 16px;
  color: #9CA3AF;
  letter-spacing: 4px;
}

.lp-why__card-num {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
}

.lp-why__card-big {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(72px, calc(5.3vw + 52px), 120px);
  font-weight: 800;
  line-height: 0.85;
}

.lp-why__card-big small {
  font-size: clamp(36px, calc(2.65vw + 26px), 60px);
  font-weight: 800;
  font-size: 32px;
}

.lp-why__card--brown .lp-why__card-big {
  color: #C8A000;
}

.lp-why__card--blue .lp-why__card-big {
  color: #1E3A5F;
}

.lp-why__card--green .lp-why__card-big {
  color: #16A34A;
}

.lp-why__card-unit {
  font-family: 'Funnel Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  margin-top: 10px;
}

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



.lp-why__card-desc p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #4B5563;
  line-height: 1.7;
  margin: 0;
}

.lp-why__statement {
  display: flex;
  gap: 20px;
}

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

.lp-why__statement-text {
  display: flex;
  flex-direction: column;
}

.lp-why__statement-main {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(24px, calc(0.88vw + 20.7px), 32px);
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 0;
}

.lp-why__statement-sub {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(16px, calc(0.88vw + 12.7px), 24px);
  font-weight: 600;
  color: #C8A000;
  margin: 0;
}

/* === SERVICE === */
.lp-service {
  display: flex;
  background: #fff;
  min-height: 600px;
}

.lp-service__img {
  width: min(560px, 43.75%);
  /* proportional: 560px at 1280px, shrinks below */
  flex-shrink: 0;
  overflow: hidden;
}

.lp-service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-service__right {
  flex: 1;
  min-width: 0;
  background: #FAF7F4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  gap: 20px;
}

.lp-service__tag {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(20px, calc(3.09vw + 8.4px), 48px);
  font-weight: 700;
  color: #C8A000;
  line-height: 1.2;
}

.lp-service__title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(26px, calc(1.88vw + 19px), 43px);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin: 0;
}

.lp-service__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-service__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
}

.lp-service__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.lp-service__icon i {
  width: 20px;
  height: 20px;
}

.lp-service__icon--brown {
  background: #C8A000;
}

.lp-service__icon--navy {
  background: #1E3A5F;
}

.lp-service__icon--green {
  background: #16A34A;
}

.lp-service__icon--purple {
  background: #9333EA;
}

.lp-service__icon--red {
  background: #DC2626;
}

.lp-service__item-title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.lp-service__item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1F2937;
}

.lp-service__footer {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

/* === USE CASE === */
.lp-usecase {
  background: #fff;
  padding: 80px 0;
}

.lp-usecase__title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(28px, calc(2.2vw + 20px), 48px);
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin: 0 0 48px;
}

.lp-usecase__row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

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

.lp-usecase__card {
  flex: 1;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.lp-usecase__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-usecase__overlay--slate {
  background: linear-gradient(to bottom, rgba(51, 65, 85, 0) 0%, rgba(51, 65, 85, .2) 40%, rgba(51, 65, 85, .75) 100%);
}

.lp-usecase__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
}

.lp-usecase__heading {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(18px, calc(1.55vw + 12.2px), 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, .8));
}

.lp-usecase__desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin: 0;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, .8));
}

/* === PRICING === */
.lp-pricing {
  background: #1E3A5F;
  padding: 80px 0;
}

.lp-pricing__title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(28px, calc(2.2vw + 20px), 48px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 48px;
}

.lp-pricing__table-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  margin-bottom: 48px;
}

.lp-pricing__table {
  width: 100%;
  border-collapse: collapse;
}

.lp-pricing__table thead tr {
  background: #111827;
}

.lp-pricing__table thead th {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 16px 20px;
  text-align: left;
}

.lp-pricing__th-sub {
  background: #C8A000 !important;
}

.lp-pricing__table tbody td {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #374151;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
}

.lp-pricing__table tbody td:last-child {
  border-right: none;
}

.lp-pricing__row-alt td:not(.lp-pricing__best) {
  background: #FAF7F4 !important;
}

.lp-pricing__item {
  font-weight: 600 !important;
  color: #111827 !important;
}

.lp-pricing__bad {
  color: #EF4444 !important;
}

.lp-pricing__mid {
  color: #C8A000 !important;
}

.lp-pricing__good {
  color: #16A34A !important;
}

.lp-pricing__best {
  background: #F5EDDF !important;
  color: #1E3A5F !important;
  font-weight: 700 !important;
  border-bottom: 1px solid #C8A000 !important;
}

.lp-pricing__statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

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

.lp-arrow-svg {
  display: block;
}

.lp-pricing__statement-text {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(24px, calc(2.65vw + 14px), 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  text-align: center;
  margin: 0;
}

/* === STEPS === */
.lp-steps {
  background: #FAF7F4;
  padding: 80px 0;
}

.lp-steps__sub {
  font-family: 'Funnel Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #C8A000;
  margin: 0 0 12px;
}

.lp-steps__title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(28px, calc(2.2vw + 20px), 48px);
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin: 0 0 56px;
}

.lp-steps__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-steps__card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  /* was height: 220px — prevented text clipping */
  border: 1px solid #E5E7EB;
}

.lp-steps__img {
  width: 320px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.lp-steps__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 40px 48px;
}

.lp-steps__num {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0 16px;
  height: 36px;
  min-height: 36px;
  flex-shrink: 0;
  width: fit-content;
  font-family: 'Funnel Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #666;
}

.lp-steps__card-title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(19px, calc(0.77vw + 16.1px), 26px);
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.lp-steps__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

/* === MID CTA === */
.lp-mid-cta {
  position: relative;
  background-size: cover;
  background-position: center;
}

.lp-mid-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(240, 235, 227, .8) 0%, rgba(240, 235, 227, .53) 100%);
}

.lp-mid-cta__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: clamp(40px, calc(4.3vw + 24px), 60px) clamp(20px, calc(11vw - 21px), 120px);
  max-width: 1280px;
  margin: 0 auto;
}

.lp-mid-cta__title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(24px, calc(2.21vw + 15.7px), 44px);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

.lp-mid-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C8A000;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  padding: 18px 40px;
  font-family: 'Funnel Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.lp-mid-cta__btn i {
  width: 20px;
  height: 20px;
}

.lp-mid-cta__review {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === FAQ === */
.lp-faq {
  background: #fff;
  padding: 80px 0;
}

.lp-faq__hdr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.lp-faq__title {
  font-family: 'Funnel Sans', sans-serif;
  font-size: clamp(28px, calc(2.2vw + 20px), 48px);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin: 0;
}

.lp-faq__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  text-align: center;
  margin: 0;
}

.lp-faq__cols {
  display: flex;
  gap: 24px;
}

.lp-faq__col {
  flex: 1;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}

.lp-faq__cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: 'Funnel Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.lp-faq__cat i {
  width: 16px;
  height: 16px;
}

.lp-faq__cat--blue {
  background: #F0EBE3;
  color: #1E3A5F;
}

.lp-faq__cat--brown {
  background: #F5EEC4;
  color: #C8A000;
}

.lp-faq__cat--green {
  background: #F0FDF4;
  color: #16A34A;
}

.lp-faq__cat--purple {
  background: #FDF2F8;
  color: #9333EA;
}

.lp-faq__item {
  padding: 20px;
  border-bottom: 1px solid #E5E7EB;
}

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

.lp-faq__q {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.lp-faq__q-icon {
  font-family: 'Funnel Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #C8A000;
  flex-shrink: 0;
}

.lp-faq__q-icon--green {
  color: #16A34A;
}

.lp-faq__q-icon--purple {
  color: #9333EA;
}

.lp-faq__a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
  padding-left: 24px;
}

/* ============================================
   RESPONSIVE — WHY 3列→縦 (<=1100px)
   ============================================ */
@media (max-width: 1100px) {
  .lp-why__cards {
    flex-direction: column;
  }

  .lp-why__card {
    min-height: 300px;
  }

  .lp-why__statement {
    padding: 0 20px;
  }
}

/* ============================================
   RESPONSIVE — Tablet / layout switches (<=960px)
   ============================================ */
@media (max-width: 960px) {

  /* HERO */
  .lp-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-hero__left {
    max-width: 100%;
    gap: 24px;
  }

  .lp-hero__right {
    display: none;
  }

  .lp-hero__btn {
    font-size: 17px;
    padding: 14px 28px;
  }

  /* WHY */
  .lp-why {
    padding: 60px 0;
  }

  .lp-why__hdr {
    margin-bottom: 40px;
  }

  .lp-why__cards {
    flex-direction: column;
  }

  .lp-why__card {
    min-height: 280px;
  }

  .lp-why__statement {
    padding: 0;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .lp-why__arrow {
    width: auto;
  }

  /* SERVICE */
  .lp-service {
    flex-direction: column;
    min-height: auto;
  }

  .lp-service__img {
    width: 100%;
    height: 300px;
  }

  .lp-service__right {
    padding: 40px;
  }

  .lp-service__footer {
    font-size: 17px;
  }

  /* USE CASE */
  .lp-usecase {
    padding: 60px 0;
  }

  .lp-usecase__title {
    margin-bottom: 32px;
  }

  .lp-usecase__card {
    min-height: 260px;
  }

  /* PRICING */
  .lp-pricing {
    padding: 60px 0;
  }

  .lp-pricing__title {
    margin-bottom: 32px;
  }

  .lp-pricing__table-wrap {
    overflow-x: auto;
  }

  .lp-pricing__table {
    min-width: 600px;
  }

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

  .lp-pricing__arrow {
    width: auto;
  }

  /* STEPS */
  .lp-steps {
    padding: 60px 0;
  }

  .lp-steps__title {
    margin-bottom: 40px;
  }

  .lp-steps__card {
    flex-direction: column;
  }

  .lp-steps__img {
    width: 100%;
    height: 200px;
  }

  .lp-steps__body {
    padding: 28px 32px;
    gap: 12px;
  }

  /* FAQ */
  .lp-faq {
    padding: 60px 0;
  }

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

/* ============================================
   RESPONSIVE — Mobile (<=600px)
   ============================================ */
@media (max-width: 600px) {

  /* HERO */

  .lp-hero__stats {
    gap: 4px;
  }

  .lp-hero__stat {
    padding: 12px 10px;
    flex: 1;
  }

  .lp-hero__btn {
    font-size: 15px;
    padding: 14px 20px;
    width: 100%;
    justify-content: center;
  }

  /* WHY */
  .lp-why {
    padding: 48px 0;
  }

  .lp-why__hdr {
    margin-bottom: 32px;
  }

  .lp-why__sub {
    font-size: 15px;
  }

  .lp-why__cards {
    margin-bottom: 40px;
  }

  .lp-why__card-body {
    padding: 24px;
  }

  .lp-why__card-unit {
    font-size: 24px;
  }

  .lp-why__card-desc p {
    font-size: 14px;
  }

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

  /* SERVICE */
  .lp-service__img {
    height: 240px;
  }

  .lp-service__right {
    padding: 28px 20px;
    gap: 16px;
  }

  .lp-service__item-title {
    font-size: 17px;
  }

  .lp-service__item-desc {
    font-size: 14px;
  }

  .lp-service__footer {
    font-size: 15px;
  }

  /* USE CASE — 2列グリッド */
  .lp-usecase {
    padding: 48px 0;
  }

  .lp-usecase__title {
    margin-bottom: 24px;
  }

  .lp-usecase__cards-all {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .lp-usecase__row {
    display: contents;
  }

  .lp-usecase__card {
    flex: 0 0 calc(50% - 6px);
    min-height: 180px;
  }

  /* PRICING — カード形式 */
  .lp-pricing {
    padding: 48px 0;
  }

  .lp-pricing__table-wrap {
    overflow-x: visible;
    border: none;
    border-radius: 0;
  }

  .lp-pricing__table,
  .lp-pricing__table tbody {
    display: block;
    min-width: 0;
  }

  .lp-pricing__table thead {
    display: none;
  }

  .lp-pricing__table tbody tr {
    display: block;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
  }

  .lp-pricing__table tbody tr:last-child {
    margin-bottom: 0;
  }

  .lp-pricing__table tbody td.lp-pricing__item {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, .12) !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .lp-pricing__table tbody td:not(.lp-pricing__item) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
    font-size: 14px;
  }

  .lp-pricing__table tbody td:not(.lp-pricing__item)::before {
    content: attr(data-label);
    font-size: 12px;
    font-weight: 600;
    color: #9CA3AF;
    flex-shrink: 0;
    margin-right: 8px;
  }

  .lp-pricing__table tbody td.lp-pricing__best::before {
    color: #C4873A;
  }

  .lp-pricing__row-alt td:not(.lp-pricing__best):not(.lp-pricing__item) {
    background: #FAF7F4 !important;
  }

  .lp-pricing__table tbody td.lp-pricing__best {
    background: #F5EDDF !important;
  }

  /* STEPS */
  .lp-steps {
    padding: 48px 0;
  }

  .lp-steps__title {
    margin-bottom: 28px;
  }

  .lp-steps__img {
    height: 160px;
  }

  .lp-steps__body {
    padding: 20px;
    gap: 10px;
  }

  .lp-steps__card-desc {
    font-size: 14px;
  }

  /* MID CTA */
  .lp-mid-cta__btn {
    font-size: 14px;
    padding: 14px 24px;
  }

  /* FAQ */
  .lp-faq {
    padding: 48px 0;
  }

  .lp-faq__item {
    padding: 16px;
  }

  .lp-faq__q {
    font-size: 14px;
  }

  .lp-faq__a {
    font-size: 13px;
  }

  .lp-hero__stat-num {
    font-size: 18px;
  }

  .lp-hero__stat-sub {
    font-size: 12px;
  }

  .lp-usecase__desc {
    font-size: 14px;
  }
}