@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --color-text: #1f2328;
  --color-subtext: #5b6573;
  --color-line: #e6eaf0;
  --color-bg: #ffffff;
  --color-bg-soft: #f6f8fb;
  --color-bg-soft-2: #f9fbff;
  --color-accent: #315efb;
  --color-accent-soft: #edf2ff;
  --color-dark: #0d1117;
  --shadow-soft: 0 10px 30px rgba(26, 38, 63, 0.06);
  --shadow-card: 0 12px 40px rgba(37, 56, 88, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.lp-header__inner,
.fv__inner,
.problems__inner,
.service__inner,
.features__inner,
.use-cases__inner,
.pricing__inner,
.flow__inner,
.faq__inner,
.cta-bottom__inner,
.lp-footer__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(230, 234, 240, 0.9);
  backdrop-filter: blur(12px);
}

.lp-header__inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.lp-header__logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-header__cta,
.fv__btn,
.mid-cta__btn,
.cta-bottom__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 9999px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-header__cta {
  min-height: 44px;
  padding: 0 20px;
  background: var(--color-dark);
  color: #fff;
  font-size: 14px;
}

.lp-header__cta:hover,
.fv__btn--primary:hover,
.mid-cta__btn:hover,
.cta-bottom__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}


.fv-fixed-bg {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  background-image: url("../images/fv-fixed-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  visibility: visible;
  transition: opacity .08s linear, visibility .08s linear;
  will-change: opacity;
}

.fv-fixed-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(49, 94, 251, 0.05), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(49, 94, 251, 0.04), transparent 22%),
    linear-gradient(90deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.08) 48%, rgba(255,255,255,.02) 100%);
  pointer-events: none;
}

.lp-main,
.lp-footer {
  position: relative;
}

.fv {
  position: relative;
  z-index: 40;
  overflow: hidden;
  padding: 110px 0 90px;
  background: transparent;
}

.fv__bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.fv__bg-circle--1 {
  top: 90px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(49, 94, 251, 0.08);
}

.fv__bg-circle--2 {
  left: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  background: rgba(49, 94, 251, 0.05);
}

.fv__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 48px;
  align-items: center;
}

.fv__body {
  position: relative;
  z-index: 1;
}

.fv__label,
.section-heading__label,
.cta-bottom__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 9999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fv__title {
  margin: 22px 0 0;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.fv__text {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--color-subtext);
  font-size: 18px;
}

.fv__note {
  margin: 14px 0 0;
  color: #7a8492;
  font-size: 14px;
}

.fv__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.fv__point {
  padding: 10px 14px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 700;
}

.fv__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.fv__btn--primary,
.mid-cta__btn {
  background: var(--color-dark);
  color: #fff;
  box-shadow: 0 12px 30px rgba(13, 17, 23, 0.16);
}

.fv__btn--secondary {
  border: 1px solid var(--color-dark);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-dark);
}

.fv__btn--secondary:hover {
  background: #f3f5f8;
  transform: translateY(-1px);
}

.fv__visual {
  position: relative;
  z-index: 1;
}

.mock-chat {
  padding: 18px;
  border: 1px solid rgba(230, 234, 240, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.mock-chat__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 6px 4px 16px;
  border-bottom: 1px solid var(--color-line);
}

.mock-chat__head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-chat__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(49, 94, 251, 0.12);
}

.mock-chat__name {
  font-size: 15px;
  font-weight: 800;
}

.mock-chat__status {
  color: #5c8c2e;
  font-size: 12px;
  font-weight: 700;
}

.mock-chat__body {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.mock-chat__message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.65;
}

.mock-chat__message--bot {
  background: #f4f7fc;
  color: var(--color-text);
  border-top-left-radius: 6px;
}

.mock-chat__message--user {
  margin-left: auto;
  background: var(--color-accent);
  color: #fff;
  border-top-right-radius: 6px;
}

.mock-chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mock-chat__chip {
  padding: 8px 12px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--color-line);
  font-size: 12px;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading__title {
  margin: 18px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
}

.section-heading__text {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--color-subtext);
}

.problems,
.service,
.features,
.use-cases,
.pricing,
.flow,
.faq,
.cta-bottom {
  padding: 100px 0;
}

.problems {
  background: var(--color-bg-soft);
}

.problems__list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.problems__item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 18px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.problems__num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
}

.problems__item-text {
  font-size: 17px;
  font-weight: 800;
}

.service__box {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid #dfe6f2;
  background: linear-gradient(180deg, #f9fbff 0%, #f4f7fc 100%);
  box-shadow: var(--shadow-soft);
}

.service__box-main {
  font-size: 18px;
  font-weight: 800;
}

.service__box-sub {
  color: var(--color-subtext);
}

.features__list,
.use-cases__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.features__card,
.use-cases__card {
  position: relative;
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.features__card:hover,
.use-cases__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(32, 45, 76, 0.10);
  border-color: #dbe4f5;
}

.features__card::before,
.use-cases__card::before {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #7f9cff 100%);
  margin-bottom: 22px;
}

.features__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0%, #ffffff 24%, transparent 25%),
    linear-gradient(135deg, #eef3ff 0%, #dfe8ff 100%);
  border: 1px solid #dfe6f5;
  margin-bottom: 18px;
}

.features__title,
.use-cases__title,
.flow__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.features__text,
.use-cases__text,
.flow__text {
  margin: 12px 0 0;
  color: var(--color-subtext);
}

.use-cases__image {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: #edf2fb;
}

.use-cases__image:empty {
  display: none;
}

.mid-cta {
  margin-top: 36px;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #101827 0%, #1a2540 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.mid-cta__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.mid-cta__btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--color-dark);
  box-shadow: none;
}

.pricing {
  background: #fff;
}

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

.pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.pricing__card--featured {
  border-color: rgba(49, 94, 251, 0.35);
  box-shadow: 0 18px 46px rgba(49, 94, 251, 0.14);
}

.pricing__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 9999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.pricing__card-head {
  min-height: 104px;
  padding: 18px 92px 18px 18px;
  margin: -10px -10px 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(49, 94, 251, 0.08) 0%, rgba(255, 255, 255, 0.92) 72%);
  border: 1px solid rgba(49, 94, 251, 0.10);
}

.pricing__card--qa .pricing__card-head {
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.14) 0%, rgba(255, 255, 255, 0.94) 72%);
  border-color: rgba(255, 59, 59, 0.18);
}

.pricing__card--knowledge .pricing__card-head {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.15) 0%, rgba(255, 255, 255, 0.94) 72%);
  border-color: rgba(52, 199, 89, 0.20);
}

.pricing__card--hybrid .pricing__card-head {
  background: linear-gradient(135deg, rgba(49, 94, 251, 0.14) 0%, rgba(255, 255, 255, 0.94) 72%);
  border-color: rgba(49, 94, 251, 0.20);
}

.pricing__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 0 10px;
  border-radius: 9999px;
  color: var(--color-accent);
  background: rgba(49, 94, 251, 0.08);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pricing__card--qa .pricing__label {
  color: #b91c1c;
  background: rgba(255, 59, 59, 0.12);
}

.pricing__card--knowledge .pricing__label {
  color: #168236;
  background: rgba(52, 199, 89, 0.13);
}

.pricing__card--hybrid .pricing__label {
  color: #2445c7;
  background: rgba(49, 94, 251, 0.12);
}

.pricing__title {
  margin: 12px 0 0;
  font-size: 22px;
  line-height: 1.45;
}

.pricing__initial {
  margin-top: 22px;
}

.pricing__section-heading {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 0 10px;
  border-radius: 9999px;
  background: var(--color-bg-soft);
  color: var(--color-subtext);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pricing__price {
  margin: 10px 0 0;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.pricing__price span {
  font-size: 54px;
  letter-spacing: -0.04em;
}

.pricing__summary {
  margin: 18px 0 0;
  color: var(--color-subtext);
}

.pricing__details {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--color-line);
}

.pricing__details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-line);
}

.pricing__details dt,
.pricing__details dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.pricing__details dt {
  color: var(--color-subtext);
  font-weight: 700;
}

.pricing__details dd {
  text-align: right;
  color: var(--color-text);
  font-weight: 800;
}

.pricing__monthly {
  margin-top: auto;
  padding: 22px 20px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f9fbff 0%, #f4f7fc 100%);
  border: 1px solid var(--color-line);
}

.pricing__details + .pricing__monthly {
  margin-top: 24px;
}

.pricing__monthly-price {
  margin: 10px 0 0;
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.pricing__monthly-price span {
  font-size: 34px;
  letter-spacing: -0.03em;
}

.pricing__monthly-text {
  margin: 12px 0 0;
  color: var(--color-subtext);
  font-size: 14px;
  line-height: 1.7;
}

.pricing__card--qa .pricing__monthly {
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.08) 0%, rgba(255, 255, 255, 0.96) 72%);
  border-color: rgba(255, 59, 59, 0.14);
}

.pricing__card--knowledge .pricing__monthly {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.09) 0%, rgba(255, 255, 255, 0.96) 72%);
  border-color: rgba(52, 199, 89, 0.16);
}

.pricing__card--hybrid .pricing__monthly {
  background: linear-gradient(135deg, rgba(49, 94, 251, 0.08) 0%, rgba(255, 255, 255, 0.96) 72%);
  border-color: rgba(49, 94, 251, 0.16);
}

.pricing__note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--color-bg-soft);
  color: var(--color-subtext);
  font-size: 14px;
}

.flow {
  background: var(--color-bg-soft-2);
}

.flow__list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow__item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.flow__num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 800;
}

.faq__list {
  display: grid;
  gap: 16px;
}

.faq__item {
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq__question {
  position: relative;
  cursor: pointer;
  padding: 24px 60px 24px 24px;
  font-weight: 800;
  list-style: none;
  transition: background 0.2s ease;
}

.faq__question:hover {
  background: #f9fbff;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::before,
.faq__question::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--color-accent);
  transform: translateY(-50%);
  border-radius: 9999px;
}

.faq__question::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.28s ease;
}

.faq__item.is-open .faq__question::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.38s ease,
    opacity 0.24s ease,
    padding 0.38s ease;
  padding: 0 24px;
  color: var(--color-subtext);
}

.faq__answer-inner {
  padding-bottom: 24px;
}

.faq__item.is-open .faq__answer {
  opacity: 1;
  padding: 0 24px;
}

.cta-bottom {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 80% 90%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(135deg, #090b10 0%, #11161f 100%);
  color: #fff;
}

.cta-bottom__inner {
  text-align: center;
}

.cta-bottom__label {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-bottom__title {
  margin: 18px 0 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.25;
}

.cta-bottom__text {
  margin: 20px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-bottom__btn {
  margin-top: 32px;
  background: #fff;
  color: var(--color-dark);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.lp-footer {
  padding: 44px 0;
  border-top: 1px solid var(--color-line);
  background: #fff;
}

.lp-footer__name {
  margin: 0;
  font-weight: 800;
}

.lp-footer__text {
  margin: 10px 0 0;
  color: var(--color-subtext);
  font-size: 14px;
}


/* Page top button */
.page-top {
  position: fixed;
  left: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 2147482000;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 9999px;
  background: #0d1117;
  color: #fff;
  box-shadow: 0 14px 36px rgba(13, 17, 23, 0.22);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover,
.page-top:focus-visible {
  background: #151b23;
  transform: translateY(-2px);
  outline: none;
}

.page-top__arrow {
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.page-top__text {
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
}

@media (max-width: 960px) {
  .fv__grid {
    grid-template-columns: 1fr;
  }

  .fv__visual {
    max-width: 560px;
  }

  .mid-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .features__list,
  .use-cases__list,
  .pricing__list {
    grid-template-columns: 1fr;
  }
}


/* Page top button */
.page-top {
  position: fixed;
  left: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 2147482000;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 9999px;
  background: #0d1117;
  color: #fff;
  box-shadow: 0 14px 36px rgba(13, 17, 23, 0.22);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover,
.page-top:focus-visible {
  background: #151b23;
  transform: translateY(-2px);
  outline: none;
}

.page-top__arrow {
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.page-top__text {
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
}

@media (max-width: 960px) {
  .fv-fixed-bg {
    background-position: 64% center;
  }
}

/* First view fixed background responsive */
@media (max-width: 767px) {
  .fv-fixed-bg {
    background-image: url("../images/fv-fixed-bg.jpg");
    background-position: 68% center;
  }
  .fv-fixed-bg::after {
    background:
      linear-gradient(90deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.12) 58%, rgba(255,255,255,.04) 100%);
  }
}

@media (max-width: 767px) {
  .lp-header__inner,
  .fv__inner,
  .problems__inner,
  .service__inner,
  .features__inner,
  .use-cases__inner,
  .pricing__inner,
  .flow__inner,
  .faq__inner,
  .cta-bottom__inner,
  .lp-footer__inner {
    width: min(100%, calc(100% - 28px));
  }

  .lp-header__inner {
    min-height: 66px;
  }

  .lp-header__logo {
    font-size: 14px;
    max-width: 180px;
  }

  .lp-header__cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .fv {
    padding: 80px 0 64px;
  }

  .problems,
  .service,
  .features,
  .use-cases,
  .pricing,
  .flow,
  .faq,
  .cta-bottom {
    padding: 70px 0;
  }

  .fv__title {
    font-size: 40px;
  }

  .fv__text {
    font-size: 16px;
  }

  .fv__buttons {
    flex-direction: column;
  }

  .fv__btn,
  .mid-cta__btn,
  .cta-bottom__btn {
    width: 100%;
  }

  .problems__item {
    align-items: flex-start;
  }

  .service__box {
    padding: 24px;
  }

  .features__card,
  .use-cases__card,
  .pricing__card,
  .flow__item {
    padding: 22px;
  }

  .pricing__card-head {
    min-height: auto;
    padding: 16px;
    margin: -6px -6px 0;
  }

  .pricing__badge {
    position: static;
    width: fit-content;
    margin-bottom: 14px;
  }

  .pricing__price span {
    font-size: 46px;
  }

  .pricing__monthly {
    padding: 18px 16px;
  }

  .pricing__monthly-price span {
    font-size: 30px;
  }

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

  .flow__num {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .mid-cta {
    padding: 24px;
  }

  .cta-bottom__title {
    font-size: 34px;
  }

  .page-top {
    left: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .page-top__arrow {
    font-size: 16px;
  }

  .page-top__text {
    font-size: 9px;
  }

}