:root {
  --header-height: 72px;
  --container: 1140px;
  --ink: #1c1a17;
  --text: #333;
  --muted: #837a6d;
  --green: #1ba394;
  --green-dark: #049484;
  --blue: #0e6fd4;
  --soft: #f1f8f7;
  --line: #e5f1ef;
  --shadow:
    0 4px 12px rgba(40, 30, 18, 0.07), 0 12px 32px rgba(40, 30, 18, 0.06);
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(14, 111, 212, 0.45);
  outline-offset: 4px;
}
.wrap {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.section {
  padding: 104px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(28px, calc((100vw - var(--container)) / 2 + 28px));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 rgba(215, 239, 255, 0.8);
}
@media (max-width: 767px) {
  .site-header {
    position: relative;
  }
}
.brand,
.site-nav {
  display: flex;
  align-items: center;
}
.brand {
  min-width: 0;
}
.brand-logo {
  width: 136.839px;
  height: 30px;
  flex: 0 0 auto;
}
.site-nav {
  gap: 12px;
  color: #4a443c;
  font-size: 13.5px;
  font-weight: 700;
}
.site-nav > a:not(.button) {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 3px;
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid #fff;
  border-radius: 999px;
  box-shadow: 0 6px 9px rgba(196, 196, 196, 0.26);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}
/* TEMP: DEMO体験(#demo)・お問い合わせ(contact.html)関連ボタンを一時非表示 (戻す時はこのブロックを削除) */
a[href$="#demo"] {
  display: none !important;
}
.button-small,
.button-demo {
  min-height: 38px;
  font-size: 14px;
}
.button-demo {
  width: 108px;
  height: 38px;
  min-height: 38px;
  padding: 12px 19px;
  gap: 0;
  background: linear-gradient(90deg, #3e9ff6 0%, #3ac7b7 100%);
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-align: center;
}
.button-demo > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 14px;
}
.button-demo > span > span {
  line-height: 14px;
  white-space: nowrap;
  word-break: break-word;
}
.button-primary {
  background: linear-gradient(90deg, #1a3285 0%, #0a7be0 100%);
  color: #fff;
}
.button-secondary {
  background: linear-gradient(90deg, #3e9ff6 0%, #51adff 100%);
  color: #fff;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #d7efff;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.18s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-wrap {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 28px));
  margin-right: auto;
}
.hero-wrap:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 300px;
  left: 930px;
  top: 107px;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(32px);
  background: radial-gradient(
    circle at 35% 35%,
    #ecfdf6 0,
    #aaead3 30%,
    #89e1c1 45%,
    #68d8b0 60%,
    #91e2c5 66%,
    #baebd9 72%,
    rgba(186, 235, 217, 0) 73%
  );
}
.hero-copy {
  padding-top: 0;
}
.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 56px;
  font-weight: 900;
  letter-spacing: 0.48px;
}
.hero h1 span,
.hero h1 mark {
  display: inline-block;
  width: max-content;
  max-width: 100%;
}
.hero mark {
  font-size: 40px;
  height: 60px;
  padding: 0 7px;
  background: linear-gradient(
    to bottom,
    rgba(255, 249, 212, 0) 55%,
    #fff9d4 55%
  );
  border-radius: 3px;
  color: var(--green);
  line-height: 60px;
}
.hero-lead {
  position: relative;
  margin: 34px 0 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.hero-lead-note {
  display: block;
  font-size: 21.936px;
  line-height: 65.808px;
}
.hero-lead strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 37.291px;
  line-height: 65.808px;
  font-weight: 900;
}
.hero-ai-line {
  display: block;
  width: max-content;
  max-width: 100%;
  background: linear-gradient(90deg, #049484, #00b8a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  line-height: 65.808px;
  white-space: nowrap;
  position: relative;
  padding-bottom: 20px;
}
.hero-ai-line:after {
  position: absolute;
  display: block;
  content: "";
  background: url("assets/images/line_nami.svg") no-repeat center center/cover;
  aspect-ratio: 767 / 15;
  width: 90%;
  height: auto;
  left: 0;
  bottom: 0;
}
.hero-ai {
  font-size: 81.164px;
  letter-spacing: 4.87px;
}
.hero-ni {
  font-size: 61.421px;
}
.hero-rest {
  font-size: 70.196px;
}
.hero-compare-chip {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin: 34px 0 0;
  padding: 10px 30px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 2px rgba(27, 163, 148, 0.08);
}
.hero-compare-chip p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 50px;
  font-weight: 900;
  white-space: nowrap;
}
.hero-compare-lead {
  margin: 20px 0 0;
}
.hero-compare-lead-inner {
  display: block;
  color: var(--ink);
  font-size: 50px;
  line-height: 65.808px;
  font-weight: 900;
}
.hero-compare-num {
  font-family: "Roboto", sans-serif;
  font-size: 66px;
  color: var(--green);
}
.hero-compare-highlight {
  color: var(--green);
}

.section-head {
  text-align: center;
  margin: 0 auto 46px;
  max-width: 920px;
}
.section-head.left {
  text-align: left;
  margin: 0;
}
.section-head h2,
.compare-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.42;
  font-weight: 900;
  letter-spacing: 0.005em;
}
.section-head h2:after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--green);
  border-radius: 999px;
}
.section-head.left h2:after {
  margin-left: 0;
}
.section-head p,
.compare-intro p {
  margin: 18px 0 0;
}
@media (max-width: 767px) {
  .compare-intro p {
    margin: 18px 0 10px;
  }
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 528px;
  gap: 56px;
  align-items: center;
}
.axis-img {
  width: min(528px, 100%);
  margin-inline: auto;
}
.figma-intro-render {
  padding: 0 0 72px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.figma-intro-shot {
  margin: 0 auto;
  width: min(1200px, 100%);
  overflow: hidden;
}
.figma-intro-shot img {
  width: 100%;
  height: auto;
}
.compare {
  position: relative;
}
.compare:after {
  content: "";
  position: absolute;
  display: block;
  background-image: url();
  background: url("assets/images/top_bg002.jpg") no-repeat center center/cover;
  aspect-ratio: 1920 / 1298;
  width: 100%;
  height: 120%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .compare:after {
    height: 115%;
    background: url("assets/images/sp_top_bg002.jpg") no-repeat center
      center/cover;
  }
}
.table-scroll {
  overflow-x: auto;
  padding: 2px 0 12px;
}
.compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.compare-table th,
.compare-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
}
.compare-table th:first-child {
  text-align: left;
  background: var(--soft);
  font-weight: 800;
}
.compare-table thead th {
  height: 112px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}
.compare-table thead span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.compare-table .us {
  background: #eaf7f5;
  color: var(--green-dark);
  font-weight: 900;
  border-left: 2px solid var(--green);
  border-right: 2px solid var(--green);
}
.compare-table thead .us {
  background: var(--green);
  color: #fff;
}
.compare-table thead .us span,
.compare-table thead .us em {
  display: inline-block;
  color: var(--green);
  background: #fff;
  border-radius: 999px;
  padding: 2px 10px;
  margin: 0 0 8px;
  font-size: 11px;
  font-style: normal;
}
.reasons {
  background: url("assets/images/top_bg003.jpg") center/cover no-repeat;
}
.reasons-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.reason-list {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.reason-list article {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.reason-list article:last-child {
  border-bottom: 0;
}
.reason-list img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}
.reason-list b {
  color: var(--green);
  font-size: 13px;
}
.reason-list h3 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}
.reason-list p {
  margin: 0;
}
.trust {
  background: url("assets/images/top_bg004.jpg") center/cover no-repeat;
}
.trust .section-head h2 span {
  color: var(--green);
}
.trust-lead {
  max-width: 940px;
  margin: 0 auto 32px;
  text-align: center;
}
.stat {
  text-align: center;
  margin: 0 auto 44px;
}
.stat span {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.stat strong {
  display: block;
  color: var(--green);
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
}
.stat small {
  font-size: 28px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.case-grid article {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.case-grid .ph {
  height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f3faf9, #d8f4ee);
  color: var(--green-dark);
  font-weight: 900;
}
.case-grid h3 {
  margin: 14px 16px 2px;
  color: var(--ink);
  font-size: 16px;
}
.case-grid p {
  margin: 0 16px 16px;
  color: var(--muted);
  font-size: 13px;
}
.price {
  background: url("assets/images/top_bg005.jpg") center/cover no-repeat;
}
.price-render {
  margin: 0 auto;
  max-width: 980px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.faq {
  background: #fff;
}
.faq details {
  max-width: 920px;
  margin: 12px auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 800;
}
.faq details p {
  margin: 0;
  padding: 0 24px 22px;
}
.footer {
  padding: 48px 0;
  background: #102721;
  color: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.footer p {
  margin: 0;
  max-width: 520px;
}
.footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
  color: #d9f3ee;
}
@media (max-width: 1024px) {
  .intro-grid,
  .reasons-layout {
    grid-template-columns: 1fr;
  }
  .hero-wrap {
    margin-left: 24px;
  }
  .hero-ai-line {
    white-space: normal;
  }
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }
  .wrap {
    width: min(100% - 32px, var(--container));
  }
  .section {
    padding: 72px 0;
  }
  .figma-intro-render {
    margin-top: 0;
    padding: 56px 0 48px;
  }
  .site-header {
    padding: 10px 16px;
  }
  .nav-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    border: 1px solid #d7efff;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    justify-content: center;
  }
  .button {
    width: 100%;
    min-height: 50px;
  }
  .hero {
    min-height: 560px;
    padding-top: 44px;
  }
  .hero-wrap {
    width: calc(100% - 32px);
    margin-left: 16px;
  }
  .hero h1 {
    font-size: 27px;
    line-height: 42px;
  }
  .hero mark {
    height: auto;
    line-height: 42px;
  }
  .hero-lead {
    margin-top: 42px;
  }
  .hero-lead-note {
    font-size: 16px;
    line-height: 34px;
  }
  .hero-lead strong {
    font-size: 27px;
    line-height: 42px;
  }
  .hero-ai-line {
    line-height: 1.2;
  }
  .hero-ai {
    font-size: 54px;
    letter-spacing: 2px;
  }
  .hero-ni {
    font-size: 40px;
  }
  .hero-rest {
    font-size: 44px;
  }
  .hero-compare-chip {
    margin-top: 42px;
    padding: 8px 20px;
  }
  .hero-compare-chip p {
    font-size: 16px;
    line-height: 34px;
  }
  .hero-compare-lead {
    margin-top: 16px;
  }
  .hero-compare-lead-inner {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
  }
  .hero-compare-num {
    font-size: 48px;
  }
  .hero-wave {
    width: 100%;
    max-width: 410px;
  }
  .section-head h2,
  .compare-intro h2 {
    font-size: 28px;
  }
  .reason-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reason-list img {
    width: 100%;
    height: auto;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .stat strong {
    font-size: 54px;
  }
  .footer-inner {
    display: block;
  }
  .footer nav {
    margin-top: 24px;
  }
  .price-render {
    border-radius: 10px;
  }
  .price-render img {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 420px) {
  .hero {
    min-height: 530px;
  }
  .hero h1 {
    font-size: 23px;
    line-height: 36px;
  }
  .hero mark {
    line-height: 38px;
  }
  .hero-lead {
    margin-top: 14px;
  }
  .hero-lead-note {
    font-size: 14px;
    line-height: 30px;
  }
  .hero-lead strong {
    font-size: 24px;
    line-height: 38px;
  }
  .hero-ai {
    font-size: 46px;
  }
  .hero-ni {
    font-size: 34px;
  }
  .hero-rest {
    font-size: 36px;
  }
  .hero-compare-chip {
    margin-top: 34px;
    padding: 6px 16px;
  }
  .hero-compare-chip p {
    font-size: 14px;
    line-height: 30px;
    white-space: normal;
  }
  .hero-compare-lead {
    margin-top: 12px;
  }
  .hero-compare-lead-inner {
    font-size: 32px;
    line-height: 38px;
  }
  .hero-compare-num {
    font-size: 43px;
  }
  .compare-table {
    min-width: 820px;
  }
  .demo-card {
    padding: 30px 20px;
  }
}
/* Figma node 177:7000 comparison section */
.compare {
  position: relative;
  padding: 0 0 170px;
}
.compare .wrap {
  width: min(1140px, calc(100% - 48px));
}
.compare .section-head {
  margin-bottom: 56px;
}
.compare .section-head h2 {
  font-size: 44px;
  line-height: 62.48px;
  letter-spacing: 0.22px;
}
.compare .section-head h2:after {
  margin-top: 20px;
}
.compare .section-head p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 36px;
}
.table-scroll {
  overflow-x: auto;
  padding: 0 28px 6px;
}
.compare-table {
  width: 100%;
  min-width: 1082px;
  border: 1px solid #fff;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  /* table-layout: fixed; */
}
.compare-table .group-col {
  width: 143px;
}
.compare-table .axis-col {
  width: 143px;
}
.compare-table .studio-col {
  width: 280px;
}
.compare-table .company-a {
  width: 172px;
}
.compare-table .company-b {
  width: 172px;
}
.compare-table .self-col {
  width: 172px;
}
.compare-table th,
.compare-table td {
  height: 60px;
  padding: 18px 16px;
  border-bottom: 1px solid #f1f8f7;
  font-size: 14.5px;
  line-height: 26.83px;
}
.compare-table thead th {
  height: 133px;
  background: #f1f8f7;
  border-bottom-color: #fff;
  font-size: 16px;
  line-height: 22.4px;
}
.compare-table thead th:first-child {
  background: #fff;
}
.compare-table th.group-cell {
  position: relative;
  padding: 18px 12px;
  background: #f1f8f7;
  color: #1c1a17;
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border-bottom-color: #bce7e2;
}
.compare-table .group-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto;
  background: center/contain no-repeat;
}
.compare-table .group-cost .group-icon {
  background-image: url("assets/images/icon005.svg");
}
.compare-table .group-contract .group-icon {
  background-image: url("assets/images/icon007.svg");
}
.compare-table .group-quality .group-icon {
  background-image: url("assets/images/icon009.svg");
}
.compare-table .group-support .group-icon {
  background-image: url("assets/images/icon011.svg");
}
.compare-table .group-ai .group-icon {
  background-image: url("assets/images/icon012.svg");
}
.compare-table th.sub-cell {
  background: #fff;
  color: #1ba394;
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.compare-table tbody tr.group-end > th,
.compare-table tbody tr.group-end > td {
  border-bottom-color: #bce7e2;
}
.compare-table thead span {
  color: #837a6d;
  font-size: 12px;
  line-height: 22.2px;
  font-weight: 500;
}
.compare-table .us {
  background: #f1f8f7;
  color: #1ba394;
  font-weight: 800;
  border-left: 2px solid #1ba394;
  border-right: 2px solid #1ba394;
}
.compare-table td.us {
  font-size: 16px;
  border-bottom-color: #bce7e2;
}
.compare-table td.us .price-num {
  font-size: 28px;
  letter-spacing: 0.56px;
}
.compare-table td.us .price-unit {
  font-size: 16px;
  letter-spacing: 0.32px;
}
.compare-table .note-line {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  white-space: normal;
}
.compare-table thead .us {
  background: #1ba394;
  color: #fff;
  border-color: #1ba394;
}
.compare-table thead .us em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto 8px;
  padding: 4px 13px 3px;
  border-radius: 999px;
  background: #fff;
  color: #1ba394;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  font-size: 11px;
  line-height: 20.35px;
  letter-spacing: 0.44px;
  font-style: normal;
}
/* .compare-table thead .us em:before {
  content: "\2605";
  font-size: 10px;
} */
.compare-table thead .us span {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #fff;
  color: #1ba394;
  font-size: 10.5px;
  line-height: 19.43px;
  letter-spacing: 0.84px;
}
.compare-table sup {
  color: #333;
  font-size: 11px;
  font-weight: 800;
}
.rating {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.rating.good:before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid #1c1a17;
  border-radius: 50%;
}
.rating.great:before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid #333;
  border-radius: 50%;
}
.rating.great:after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid #333;
  border-radius: 50%;
}
.us .rating.great:after,
.us .rating.great:before {
  border-color: #1ba394;
}
.rating.fair:before,
.rating.fair:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
}
.rating.fair:before {
  top: 5px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 21px solid #6f8fb9;
}
.rating.fair:after {
  top: 9px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #fff;
}
.rating.none:before,
.rating.none:after {
  content: "";
  position: absolute;
  left: 14px;
  top: 7px;
  width: 2px;
  height: 17px;
  background: #c9c0b4;
}
.rating.none:before {
  transform: rotate(45deg);
}
.rating.none:after {
  transform: rotate(-45deg);
}
.compare-note {
  width: calc(100% - 56px);
  margin: 21px auto 0;
  color: #888;
  font-size: 13px;
  line-height: 24.7px;
}
.compare-note p {
  margin: 0 0 3px;
}
@media (max-width: 768px) {
  .compare {
    padding: 40px 0 86px 0;
  }
  .compare .wrap {
    width: min(100% - 32px, 1140px);
  }
  .compare .section-head {
    margin-bottom: 32px;
  }
  .compare .section-head h2 {
    font-size: 26px;
    line-height: 1.45;
  }
  .compare .section-head p {
    font-size: 14px;
    line-height: 1.9;
  }
  .table-scroll {
    padding: 0 0 8px;
  }
  .compare-note {
    width: 100%;
    font-size: 12px;
    line-height: 1.8;
  }
  .compare-table {
    min-width: 1082px;
  }

  .compare-table thead th:first-child {
    z-index: 3;
  }
}
@media (max-width: 1023px) {
  .compare-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
  }
  .compare-table .group-cell {
    position: sticky;
    left: 0;
    z-index: 2;
  }
  .compare-table .sub-cell {
    position: sticky;
    left: 143px;
    z-index: 2;
  }
}
/* Compare table refinements from Figma node 177:7000 */
.compare-table thead .us {
  padding-top: 21px;
  padding-bottom: 19px;
  line-height: 22.4px;
  white-space: normal;
  width: 30%;
}
.compare-table thead .us em {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 8px;
}
.compare-table thead .us span {
  display: block;
  width: max-content;
  margin: 8px auto 0;
}
.rating.good:before {
  inset: 6px;
  border-color: #1c1a17;
}
.rating.great:before {
  inset: 4px;
}
.rating.great:after {
  inset: 8px;
}
.rating.fair:before {
  top: 5px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 21px solid #333;
  transform: translateX(-50%);
}
.rating.fair:after {
  top: 9px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #fff;
  transform: translateX(-50%);
}
.rating.none:before,
.rating.none:after {
  top: 6px;
  height: 18px;
  background: #c9c0b4;
}

/* Figma node 278:3 trust section render */
.figma-sec3-render {
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.figma-sec3-render .wrap {
  width: 100%;
  max-width: none;
}
.figma-section-shot {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.figma-section-shot img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.trust-legacy[hidden] {
  display: none !important;
}
@media (max-width: 768px) {
  .figma-sec3-render .wrap {
    width: 100%;
  }
  .figma-sec3-render .figma-section-shot {
    width: 100%;
  }
  .figma-sec3-render img {
    width: 100%;
    max-width: none;
  }
}
/* Figma node 177:7660 demo chooser */
.figma-demo {
  background: #fff;
  padding: 92px 0 100px;
  overflow: hidden;
  display: none;
}
.figma-demo .wrap {
  width: min(1148px, calc(100% - 56px));
}
.demo-head {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1084px, 100%);
  min-height: 192.97px;
  margin: 0 auto 56px;
  text-align: center;
}
.demo-title-margin {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14px;
}
.demo-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 19.97px;
  margin: 0;
  color: #1c1a17;
  font-size: 44px;
  line-height: 62.48px;
  font-weight: 900;
  letter-spacing: 0.22px;
  word-break: break-word;
  white-space: nowrap;
}
.demo-title:after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background: #1ba394;
}
.demo-lead-margin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1147.31px, calc(100vw - 56px));
  padding-top: 20px;
}
.demo-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  color: #333;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  word-break: break-word;
  white-space: nowrap;
}
.demo-question {
  margin: 24px 0 0;
  color: #1c1a17;
  font-size: 19px;
  line-height: 35.15px;
  font-weight: 700;
  text-align: center;
}
.figma-demo .demo-card {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

/* branch selector: node 508:25579 */
.demo-tabs {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.demo-tab-wrap {
  width: 100%;
}
.branch-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.branch-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border: 1px solid #f1f8f7;
  border-radius: 999px;
  background: #fff;
  color: #1c1a17;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.72px;
  white-space: nowrap;
}
.demo-branch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 40px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #3e9ff6 0%, #3ac7b7 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.demo-branch:hover {
  transform: translateY(-2px);
}
.demo-branch.is-active {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.55),
    0 8px 20px rgba(30, 90, 160, 0.25);
}
.branch-label {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 27.2px;
  font-weight: 700;
}
.branch-plus {
  flex: none;
  width: 44px;
  height: 44px;
}

/* fields + submit panel: node 397:30 */
.demo-panel {
  margin-top: 30px;
  border: 2px solid #1ba394;
  border-radius: 18px;
  background: #fff;
  padding: 30px 49px 60px;
}
.demo-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: left;
}
.demo-fields {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.demo-field-label {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
  color: #1c1a17;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.28px;
  font-weight: 500;
}
.demo-field-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #1ba394;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}
.demo-input,
.demo-textarea {
  width: 100%;
  padding: 10px 22px;
  border: 1px solid #f2f2f2;
  border-radius: 6px;
  background: #f6f6f6;
  color: #1c1a17;
  font: inherit;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.28px;
  transition:
    border-color 0.16s ease,
    background-color 0.16s ease,
    box-shadow 0.16s ease;
}
.demo-input {
  height: 40px;
}
@media (max-width: 767px) {
  .demo-input,
  .demo-textarea {
    font-size: 12px;
  }
}
.demo-input::placeholder,
.demo-textarea::placeholder {
  color: #888;
}
.demo-input:focus,
.demo-textarea:focus {
  outline: none;
  border-color: #1ba394;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27, 163, 148, 0.13);
}
.demo-textarea {
  height: 100px;
  min-height: 100px;
  padding-top: 10px;
  resize: vertical;
}
.demo-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.demo-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 300px;
  max-width: 100%;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, #3e9ff6 0%, #3ac7b7 100%);
  color: #fff;
  font-size: 16.5px;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: 0 6px 9px rgba(196, 196, 196, 0.26);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.demo-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(196, 196, 196, 0.3);
}
.demo-submit-icon {
  flex: none;
  width: 20px;
  height: 20px;
}
.demo-note {
  margin: 0;
  color: #333;
  font-size: 13px;
  line-height: 20px;
}
@media (max-width: 1024px) {
  .demo-lead {
    white-space: normal;
  }
  .branch-label {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .figma-demo {
    padding: 64px 0 72px;
  }
  .figma-demo .wrap {
    width: min(100% - 32px, 1148px);
  }
  .demo-head {
    min-height: 0;
    margin-bottom: 34px;
  }
  .demo-title-margin {
    padding-top: 0;
  }
  .demo-title {
    gap: 14px;
    font-size: 30px;
    line-height: 1.45;
    white-space: normal;
  }
  .demo-lead-margin {
    width: 100%;
    padding-top: 18px;
  }
  .demo-lead {
    font-size: 15px;
    line-height: 1.9;
    white-space: normal;
  }
  .demo-question {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.7;
  }
  .demo-tabs {
    gap: 16px;
  }
  .demo-branch {
    gap: 16px;
    padding: 22px 24px;
  }
  .branch-label {
    font-size: 16px;
    line-height: 1.65;
  }
  .branch-plus {
    width: 36px;
    height: 36px;
  }
  .demo-panel {
    margin-top: 20px;
    border-radius: 18px;
    padding: 26px 20px 34px;
  }
}
@media (max-width: 420px) {
  .demo-branch {
    padding: 20px 18px;
  }
  .branch-tag {
    font-size: 12px;
    padding: 7px 14px;
  }
  .branch-label {
    font-size: 14px;
  }
  .branch-plus {
    width: 32px;
    height: 32px;
  }
  .demo-submit-btn {
    width: 100%;
    padding: 0 20px;
  }
}

/* Figma node 177:7698 price section */
.price-semantic {
  position: relative;
  overflow: hidden;
  padding: 120px 0 108px;
  background: #ebfbfa url("assets/images/top_bg005.jpg") center top/cover
    no-repeat;
}
.price-wrap {
  display: flex;
  max-width: 1140px;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding-inline: 28px;
}
.price-head {
  width: 100%;
  padding-bottom: 0;
  text-align: center;
}
.price-head h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
  color: #333;
  font-size: 44px;
  line-height: 62.48px;
  font-weight: 900;
  letter-spacing: 0.22px;
}
.price-head h2:after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background: #1ba394;
}
.price-head p {
  margin: 20px 0 0;
  color: #333;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  text-align: center;
}
.price-tabs {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 0;
}
.price-tab {
  display: flex;
  width: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 30px 20px 44px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #1c1a17;
  font-family: inherit;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}
.price-tab-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}
.price-tab strong {
  font-size: 20px;
  line-height: 20.15px;
  font-weight: 900;
  color: #000;
}
.price-tab.is-active strong {
  color: #fff;
}
.price-tab span {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  color: #666;
}
.price-tab-chevron {
  flex: none;
  width: 34px;
  height: 34px;
  background: center/contain no-repeat
    url("assets/icons/price-tab-chevron-inactive.svg");
}
.price-tab.is-active {
  border-color: transparent;
  background: linear-gradient(90deg, #025ab2 0%, #0084f9 100%);
  color: #fff;
  box-shadow: 0 6px 9px rgba(196, 196, 196, 0.26);
}
.price-tab.is-active span {
  color: #fff;
}
.price-tab.is-active .price-tab-chevron {
  background-image: url("assets/icons/price-tab-chevron-active.svg");
}
.price-mode-lead {
  margin: 0;
  color: #4a443c;
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
  text-align: center;
}
.price-points {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 2px;
}
.price-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 340px;
  padding: 18px 21px;
  margin-right: -1px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.price-point:last-child {
  margin-right: 0;
}
.price-point img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.price-point h3 {
  margin: 0;
  color: #1c1a17;
  font-size: 18px;
  line-height: 27.75px;
  font-weight: 900;
  white-space: nowrap;
}
.price-point p {
  margin: 4px 0 0;
  color: #666;
  font-size: 12.5px;
  line-height: 21.25px;
  font-weight: 400;
}
.price-grid {
  display: flex;
  width: 100%;
  max-width: 840px;
  justify-content: center;
  padding-top: 2px;
}
.plan-card {
  width: 460px;
  min-height: 605px;
  padding: 41px;
  border: 1px solid #f2f2f2;
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 1px 1px rgba(40, 30, 18, 0.05),
    0 2px 4px rgba(40, 30, 18, 0.04);
}
.plan-logo {
  display: block;
  width: 149.343px;
  height: 30px;
  object-fit: contain;
}
.plan-tagline {
  margin: 4px 0 0;
  color: #837a6d;
  font-size: 13.5px;
  line-height: 24.98px;
  font-weight: 400;
}
.plan-price {
  display: flex;
  height: 74px;
  align-items: flex-end;
  margin: 0 0 4px;
  color: #1c1a17;
  line-height: 1;
}
.plan-price .currency {
  margin: 0 4px 8px 0;
  font-size: 20px;
  line-height: 37px;
  font-weight: 700;
}
.plan-price strong {
  font-size: 52px;
  line-height: 52px;
  font-weight: 900;
  letter-spacing: 0;
}
.plan-price .period {
  margin: 0 0 8px 8px;
  color: #837a6d;
  font-size: 15px;
  line-height: 27.75px;
  font-weight: 500;
}
.plan-rows {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 4px 0 0;
  padding: 42.99px 0 0;
  border-top: 1px solid #d7efff;
}
.plan-row {
  display: flex;
  min-height: 25.89px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.plan-row dt,
.plan-row dd {
  margin: 0;
  font-size: 14px;
  line-height: 25.9px;
}
.plan-row dt {
  color: #666;
  font-weight: 400;
}
@media (max-width: 767px) {
  .plan-row dt {
    flex: auto;
  }
}
.plan-row:first-child dt,
.plan-row.is-hot dt {
  color: #333;
  font-weight: 500;
}
.plan-row dd {
  color: #1c1a17;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 767px) {
  .plan-row dd {
    flex: 1;
  }
}

.plan-row dd.is-free,
.plan-row.is-hot dd {
  color: #1ba394;
}
.price-note {
  width: 100%;
  margin-top: 0;
  padding: 48px 35px 35px;
  border: 1px solid #f2f2f2;
  border-radius: 22px;
  text-align: center;
}
.price-note p {
  margin: 0;
  color: #4a443c;
  font-size: 15px;
  line-height: 30.75px;
  font-weight: 400;
}
.price-note p + p {
  margin-top: 13px;
}
.price-note strong {
  color: #1c1a17;
  font-size: 20px;
  font-weight: 700;
}
.price-note p:last-child strong {
  font-size: 16px;
}
.price-cta {
  display: flex;
  width: 100%;
  height: 54px;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
}
.price-btn {
  display: inline-flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px 19px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 16.5px;
  line-height: 16.5px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 6px 9px rgba(196, 196, 196, 0.26);
}
.price-btn img {
  width: 20px;
  height: 20px;
  margin-right: 0;
}
.price-btn-demo {
  width: 257px;
  background: linear-gradient(90deg, #3e9ff6 0%, #3ac7b7 100%);
}
.price-btn-contact {
  width: 227px;
  background: linear-gradient(90deg, #025ab2 0%, #0084f9 100%);
}
.price-btn:focus-visible,
.price-tab:focus-visible {
  outline: 3px solid rgba(14, 111, 212, 0.45);
  outline-offset: 3px;
}
@media (max-width: 1024px) {
  .price-semantic {
    padding: 88px 0;
  }
  .price-wrap {
    padding-inline: 0;
  }
  .price-head h2 {
    font-size: 38px;
    line-height: 1.45;
  }
  .price-points {
    flex-direction: column;
    align-items: center;
  }
  .price-point {
    width: min(100%, 620px);
    margin-right: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid #ccc;
  }
  .price-point:last-child {
    border-bottom: 1px solid #ccc;
  }
  .price-note strong {
    font-size: 18px;
  }
  .price-note p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .price-semantic {
    padding: 64px 0 72px;
    background: #e8fbf7 url(assets/images/sp_top_bg005.jpg) center center /
      cover no-repeat;
  }
  .price-wrap {
    width: min(100% - 32px, 1140px);
    gap: 22px;
  }
  .price-head h2 {
    gap: 14px;
    font-size: 28px;
    line-height: 1.45;
  }
  .price-head p,
  .price-mode-lead {
    font-size: 15px;
    line-height: 1.9;
  }
  .price-tabs {
    width: 100%;
    max-width: 420px;
    gap: 12px;
    flex-direction: column;
  }
  .price-tab {
    width: auto;
    min-width: 0;
    flex: 1;
    gap: 8px;
    padding: 20px 30px 20px 30px;
    width: 100%;
  }
  .price-tab-copy {
    gap: 4px;
  }
  .price-tab strong {
    font-size: 15px;
    line-height: 1.3;
    white-space: normal;
  }
  .price-tab span {
    font-size: 11px;
    white-space: normal;
  }
  .price-tab-chevron {
    width: 26px;
    height: 26px;
  }
  .price-point {
    min-height: 0;
    padding: 17px 18px;
  }
  .price-point h3 {
    white-space: normal;
  }
  .price-grid {
    max-width: 100%;
  }
  .plan-card {
    width: 100%;
    max-width: 460px;
    min-height: 0;
    padding: 30px 24px;
    border-radius: 18px;
  }
  .plan-price strong {
    font-size: 44px;
  }
  .plan-rows {
    padding-top: 28px;
  }
  .plan-row {
    gap: 12px;
  }
  .plan-row dt,
  .plan-row dd {
    font-size: 13.5px;
  }
  .price-note {
    padding: 30px 10px;
    border-radius: 18px;
  }
  .price-note strong {
    font-size: 16px;
  }
  .price-note p:last-child strong {
    font-size: 15px;
  }
  .price-cta {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .price-btn {
    width: 100%;
    min-height: 48px;
  }
  .price-btn-demo,
  .price-btn-contact {
    width: 100%;
  }
}

/* Figma node 177:7842 FAQ list */
.faq-figma {
  background: #fff;
  padding: 92px 0 104px;
  overflow: hidden;
}
.faq-figma .faq-wrap {
  width: min(1140px, calc(100% - 56px));
  margin-inline: auto;
}
.faq-head {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100.97px;
  padding-top: 14px;
  margin: 0 auto 56px;
  text-align: center;
}
.faq-head h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19.97px;
  margin: 0;
  color: #1c1a17;
  font-size: 44px;
  line-height: 62.48px;
  font-weight: 900;
  letter-spacing: 0.22px;
  white-space: nowrap;
}
.faq-head h2:after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background: #1ba394;
}
.faq-list {
  display: flex;
  width: min(1084px, 100%);
  flex-direction: column;
  gap: 36px;
  margin: 0 auto;
}
.faq-cat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.faq-cat h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  margin: 0;
  color: #1ba394;
  font-size: 15px;
  line-height: 27.75px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}
.faq-cat h3:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 4px;
  background: #1ba394;
}
.faq-figma .faq-item {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 1px solid #f2f2f2;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  transition:
    height 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.faq-figma .faq-item[open],
.faq-figma .faq-item.is-opening {
  border-color: #d9f1ee;
  box-shadow: 0 10px 24px rgba(27, 163, 148, 0.08);
}
.faq-figma .faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr) 22px;
  gap: 16px;
  align-items: center;
  min-height: 69px;
  padding: 20px 24px;
  color: #1c1a17;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-figma .faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-figma .faq-mark {
  display: block;
  color: #1ba394;
  font-size: 18px;
  line-height: 28.8px;
  font-weight: 900;
}
.faq-figma .faq-item summary:after {
  content: "";
  width: 8px;
  height: 8px;
  justify-self: center;
  margin-top: -1px;
  background: none;
  border-right: 2px solid #82786d;
  border-bottom: 2px solid #82786d;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-figma .faq-item[open] summary:after {
  transform: rotate(-135deg);
}
.faq-figma .faq-item.is-closing summary:after {
  transform: rotate(45deg);
}
.faq-figma .faq-item summary.has-node-chevron:after {
  display: none;
}
.faq-chevron {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-chevron-frame {
  display: block;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-chevron-frame:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #82786d;
  border-bottom: 2px solid #82786d;
  transform: rotate(45deg);
  transform-origin: center;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-item.is-closing .faq-chevron {
  transform: rotate(0);
}
.faq-figma .faq-item p {
  margin: 0;
  padding: 0 64px 22px 55px;
  color: #4a443c;
  font-size: 14px;
  line-height: 1.85;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.faq-figma .faq-item[open] p,
.faq-figma .faq-item.is-opening p {
  opacity: 1;
  transform: translateY(0);
}
.faq-figma .faq-item.is-closing p {
  opacity: 0;
  transform: translateY(-4px);
}
@media (prefers-reduced-motion: reduce) {
  .faq-figma .faq-item,
  .faq-figma .faq-item summary:after,
  .faq-chevron,
  .faq-figma .faq-item p {
    transition: none;
  }
  .sp-fixed-cta {
    transition: none;
  }
}
@media (max-width: 768px) {
  .faq-figma {
    padding: 64px 0 72px;
  }
  .faq-figma .faq-wrap {
    width: min(100% - 32px, 1140px);
  }
  .faq-head {
    min-height: 0;
    margin-bottom: 34px;
    padding-top: 0;
  }
  .faq-head h2 {
    gap: 14px;
    font-size: 30px;
    line-height: 1.45;
    white-space: normal;
  }
  .faq-list {
    gap: 28px;
  }
  .faq-cat h3 {
    font-size: 14px;
    line-height: 1.8;
  }
  .faq-figma .faq-item summary {
    grid-template-columns: 15px minmax(0, 1fr) 22px;
    gap: 12px;
    min-height: 64px;
    padding: 17px 16px;
    font-size: 14px;
    line-height: 1.65;
  }
  .faq-figma .faq-item p {
    padding: 0 16px 18px 43px;
    font-size: 13px;
    line-height: 1.75;
  }
}
/* Figma node 177:8021 final CTA semantic section */
.figma-sec7-render {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: #fff;
  overflow: hidden;
}
.figma-sec7-render:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: url("assets/images/top_bg006.jpg") center/cover no-repeat;
  transform: scale(1.02);
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(760px, 100%);
  flex-direction: column;
  align-items: stretch;
  gap: 38.2px;
  text-align: center;
}
.final-title,
.final-sub {
  margin: 0;
  color: #333;
  word-break: break-word;
  text-align: center;
}
.final-title {
  font-size: 46px;
  line-height: 64.4px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}
.final-sub {
  font-size: 24px;
  line-height: 35.15px;
  font-weight: 800;
  white-space: nowrap;
}
.final-ctas {
  display: flex;
  width: 100%;
  min-height: 54.8px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0 14px;
  padding-top: 1.8px;
}
.final-btn {
  display: inline-flex;
  height: 53px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 16.5px;
  line-height: 16.5px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 6px 9px rgba(196, 196, 196, 0.26);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}
.final-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}
.final-btn-demo {
  width: 257px;
  padding: 12px 19px;
  background: linear-gradient(90deg, #3e9ff6 0%, #3ac7b7 100%);
}
.final-btn-docs {
  width: 128px;
  padding: 18px 31px;
  background: linear-gradient(90deg, #3ac6b8 0.39%, #86ef9b 100.39%);
  box-shadow: none;
}
.final-btn-contact {
  width: 194px;
  padding: 12px 19px;
  background: linear-gradient(90deg, #025ab2 0%, #0084f9 100%);
}
.final-btn-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  flex: 0 0 auto;
}
.final-btn-icon img {
  width: 20px;
  height: 20px;
  max-width: none;
}
@media (max-width: 768px) {
  .figma-sec7-render {
    min-height: 294px;
    padding: 58px 16px;
    background: #e8fbf7 url(assets/images/sp_top_bg006.jpg) center center /
      cover no-repeat;
  }
  .final-inner {
    gap: 16px;
  }
  .final-title {
    font-size: 28px;
    line-height: 1.45;
    white-space: normal;
  }
  .final-sub {
    font-size: 15px;
    line-height: 1.7;
    white-space: normal;
  }
  .final-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 320px);
    min-height: 0;
    margin-inline: auto;
    padding-top: 4px;
  }
  .final-btn,
  .final-btn-demo,
  .final-btn-docs,
  .final-btn-contact {
    width: 100%;
    height: auto;
    min-height: 48px;
    font-size: 14px;
    line-height: 1.2;
  }
  .final-btn-demo,
  .final-btn-docs,
  .final-btn-contact {
    padding: 0 18px;
  }
}

/* Semantic implementation for Figma node 241:10344 / Group 9 */
.reasons-semantic {
  position: relative;
  min-height: 1641px;
  padding: 120px 0 120px;
  background: #e8fbf7 url("assets/images/top_bg003.jpg") center top/cover
    no-repeat;
  overflow: hidden;
}
.reasons-semantic .wrap {
  width: min(1920px, 100%);
  margin-inline: auto;
}
.reasons-semantic .reasons-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 56px;
}
.reasons-side-label {
  position: absolute;
  left: clamp(120px, 16.9vw, 325px);
  top: 343px;
  z-index: 0;
  width: 132px;
  height: 661px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: visible;
  color: #fff;
  /* font-family: Roboto, "Arial Black", Arial, sans-serif; */
  font-size: 130px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 7.8px;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0.96;
  pointer-events: none;
}
.reasons-sec-head {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 163px;
  padding-top: 14px;
  text-align: center;
}
.reasons-sec-title {
  position: relative;
  width: min(660px, calc(100% - 48px));
  min-height: 149px;
  margin: 0;
  color: #1c1a17;
  font-size: 44px;
  line-height: 62.48px;
  font-weight: 900;
  letter-spacing: 0.22px;
  text-align: center;
}
.reasons-sec-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 46px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #1ba394;
}
.reasons-sec-title span {
  font: inherit;
}
.reasons-title-line,
.reasons-title-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.reasons-title-row {
  gap: 0;
  flex-wrap: wrap;
}
.reasons-sec-title mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 0.5px 5.28px;
  border-radius: 2px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 58%, #fff 58%);
  color: #1ba394;
}
.reasons-semantic .reason-list {
  align-self: flex-end;
  width: min(1347px, calc(100vw - 420px));
  min-width: 0;
  margin-right: 0;
  background: #fff;
  border-radius: 22px 0 0 22px;
  box-shadow:
    0 6px 18px rgba(28, 26, 23, 0.08),
    0 18px 42px rgba(28, 26, 23, 0.08);
  overflow: hidden;
}
.reasons-semantic .reason-item {
  display: grid;
  grid-template-columns: 240px minmax(0, 979px);
  gap: 48px;
  align-items: center;
  min-height: 280px;
  padding: 40px 40px 40px;
  border-bottom: 1px solid #e5f1ef;
  background: #fff;
}
.reasons-semantic .reason-item:first-child {
  min-height: 298px;
  padding-top: 49px;
  padding-bottom: 49px;
}
.reasons-semantic .reason-item:last-child {
  border-bottom: 0;
}
.reasons-semantic .reason-item img {
  width: 240px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  background: #eef8f6;
}
.reasons-semantic .reason-copy {
  max-width: 979px;
}
.reasons-semantic .reason-copy b {
  display: block;
  margin: 0 0 4px;
  color: #1ba394;
  background: none;
  font-size: 13px;
  line-height: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.reasons-semantic .reason-copy h3 {
  margin: 0 0 12px;
  color: #1c1a17;
  font-size: 25px;
  line-height: 35px;
  font-weight: 900;
}
.reasons-semantic .reason-copy p {
  max-width: 912px;
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 32px;
  font-weight: 500;
}
.reasons-semantic .reason-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.reasons-semantic .reason-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eaf7f5;
  color: #1ba394;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .reasons-side-label {
    left: 24px;
    opacity: 0.78;
  }
  .reasons-semantic .reason-list {
    width: min(1020px, calc(100% - 180px));
  }
  .reasons-semantic .reason-item {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 36px;
  }
  .reasons-semantic .reason-item img {
    width: 220px;
    height: 184px;
  }
}
@media (max-width: 1024px) {
  .reasons-semantic {
    min-height: 0;
    padding-bottom: 88px;
  }
  .reasons-semantic .reasons-wrap {
    gap: 48px;
  }
  .reasons-side-label {
    left: -18px;
    top: 180px;
    opacity: 0.45;
  }
  .reasons-semantic .reason-list {
    width: calc(100% - 96px);
  }
}
@media (max-width: 768px) {
  .reasons-semantic {
    padding: 60px 0 70px;
    background-position: center top;
    background: #e8fbf7 url(assets/images/sp_top_bg003.jpg) center top / cover
      no-repeat;
  }
  .reasons-semantic .wrap {
    width: min(100% - 32px, 1140px);
  }
  .reasons-semantic .reasons-wrap {
    gap: 32px;
  }
  .reasons-side-label {
    display: none;
  }
  .reasons-sec-head {
    height: auto;
    padding-top: 0;
  }
  .reasons-sec-title {
    min-height: 116px;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: 0;
    padding-bottom: 30px;
  }
  .reasons-title-line,
  .reasons-title-row {
    display: block;
  }
  .reasons-sec-title mark {
    padding: 0 4px;
  }
  .reasons-semantic .reason-list {
    width: 100%;
    border-radius: 18px;
  }
  .reasons-semantic .reason-item,
  .reasons-semantic .reason-item:first-child {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 22px;
  }
  .reasons-semantic .reason-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.55;
    object-fit: cover;
  }
  .reasons-semantic .reason-copy h3 {
    font-size: 19px;
    line-height: 1.55;
  }
  .reasons-semantic .reason-copy p {
    font-size: 14px;
    line-height: 1.8;
  }
  .reasons-semantic .reason-tags {
    gap: 6px;
  }
  .reasons-semantic .reason-tags span {
    min-height: 34px;
    padding: 5px 12px;
  }
}

/* Semantic implementation for Figma node 177:72 trust/case section */
.trust-node {
  position: relative;
  min-height: 1480px;
  padding: 120px 0;
  background: #f8fffd url("assets/images/top_bg004.jpg") center top/cover
    no-repeat;
  overflow: hidden;
  background: #fff;
}
.trust-node .trust-wrap {
  width: min(1200px, calc(100% - 56px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.trust-sec-head {
  width: 100%;
  padding-top: 14px;
  text-align: center;
}
.trust-sec-title {
  position: relative;
  width: min(872px, 100%);
  min-height: 149px;
  margin: 0 auto;
  color: #1c1a17;
  font-size: 44px;
  line-height: 62.48px;
  font-weight: 900;
  letter-spacing: 0.22px;
  text-align: center;
}
.trust-sec-title span,
.trust-sec-title mark {
  display: block;
}
.trust-sec-title mark {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.5px 5.28px;
  border-radius: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 249, 212, 0) 58%,
    #fff9d4 58%
  );
  color: #1ba394;
}
@media (max-width: 767px) {
  .trust-sec-title mark {
    background: linear-gradient(
      to bottom,
      rgba(255, 249, 212, 0) 70%,
      #fff9d4 70%
    );
    width: fit-content;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.trust-sec-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 46px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #1ba394;
}
.trust-lead-block {
  width: min(1084px, 100%);
  padding-top: 7px;
  text-align: center;
}
.trust-q {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  color: #1ba394;
  font-size: 26px;
  line-height: 36.1px;
  font-weight: 700;
}
.trust-q span {
  display: block;
}
.trust-think {
  margin: 14px 0 0;
  color: #4a443c;
  font-size: 17px;
  line-height: 31.45px;
  font-weight: 400;
}
.trust-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
}
.trust-body p {
  margin: 0;
  color: #333;
  font-size: 17px;
  line-height: 35.7px;
  font-weight: 400;
  text-align: center;
}
.trust-body strong {
  font-weight: 700;
}
.trust-answer {
  display: inline-block;
  width: min(766px, 100%);
  background: #fff;
  color: #1ba394 !important;
  font-size: 24px !important;
  line-height: 35.7px !important;
  font-weight: 900 !important;
}
.trust-stat {
  width: min(560px, 100%);
  text-align: center;
}
.trust-stat > span {
  display: block;
  color: #1ba394;
  font-size: 18px;
  line-height: 25.9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  opacity: 0.92;
}
.trust-stat-value {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
}
.trust-stat-value img {
  width: 30px;
  height: 73px;
  margin-top: 10px;
  object-fit: contain;
  flex: 0 0 auto;
}
.trust-stat-value strong {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  color: #1ba394;
  /* font-family: Roboto, "Arial Black", Arial, sans-serif; */
  font-size: 84px;
  line-height: 84px;
  font-weight: 900;
  letter-spacing: -0.84px;
}
.trust-stat-value small {
  padding-bottom: 5px;
  font-family: var(--font);
  font-size: 35.3px;
  line-height: 35.28px;
  font-weight: 700;
  letter-spacing: 0;
}
.trust-cases {
  width: min(1200px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.trust-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.trust-tabs button {
  min-width: 84px;
  min-height: 42px;
  padding: 12px 27px;
  border: 1px solid #f2f2f2;
  border-radius: 999px;
  background: #fff;
  color: #4a443c;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
}
.trust-tabs button.is-active {
  border-color: #1ba394;
  background: #1ba394;
  color: #fff;
  box-shadow: 0 6px 8px rgba(132, 132, 132, 0.24);
}
.trust-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  justify-content: center;
}
.trust-case-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #f2f2f2;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(40, 30, 18, 0.05),
    0 2px 8px rgba(40, 30, 18, 0.04);
}
.trust-case-visual {
  height: 379px;
  display: grid;
  place-items: center;
  border: 1px solid #d7efff;
  background: repeating-linear-gradient(
    135deg,
    #faf7f2 0,
    #faf7f2 10px,
    #f4efe6 10px,
    #f4efe6 20px
  );
}
.trust-case-visual span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 10px 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: #837a6d;
  font-family: Inter, var(--font);
  font-size: 11px;
  line-height: 20.35px;
  letter-spacing: 0.22px;
}
@media (max-width: 1024px) {
  .trust-node {
    min-height: 0;
    padding: 88px 0;
  }
  .trust-case-grid {
    grid-template-columns: repeat(2, minmax(0, 288px));
  }
  .trust-case-visual {
    height: 320px;
  }
  .trust-sec-title {
    font-size: 38px;
    line-height: 1.45;
  }
  .trust-q {
    font-size: 23px;
    line-height: 1.55;
  }
}
@media (max-width: 768px) {
  .trust-node {
    padding: 64px 0 72px;
    background-position: left bottom;
    background: #e8fbf7 url(assets/images/sp_top_bg004.jpg) center center /
      cover no-repeat;
  }
  .trust-node .trust-wrap {
    width: min(100% - 32px, 1200px);
    gap: 34px;
  }
  .trust-sec-head {
    padding-top: 0;
  }
  .trust-sec-title {
    min-height: 116px;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: 0;
  }
  .trust-lead-block {
    padding-top: 0;
  }
  .trust-q {
    font-size: 20px;
    line-height: 1.55;
  }
  .trust-think {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.8;
  }
  .trust-body {
    padding-top: 14px;
  }
  .trust-body p {
    font-size: 14px;
    line-height: 2.2;
    background: transparent;
  }
  .trust-answer {
    width: 100%;
    padding: 3px 8px;
    font-size: 18px !important;
    line-height: 1.65 !important;
  }
  .trust-stat-value {
    gap: 12px;
  }
  .trust-stat-value img {
    width: 22px;
    height: 54px;
  }
  .trust-stat-value strong {
    font-size: 52px;
    line-height: 58px;
  }
  .trust-stat-value small {
    font-size: 22px;
    line-height: 1.2;
  }
  .trust-cases {
    width: 100%;
    gap: 22px;
  }
  .trust-tabs button {
    min-width: 76px;
  }
  .trust-case-grid {
    /* grid-template-columns: 1fr; */
    gap: 14px;
  }
  .trust-case-visual {
    height: 220px;
  }
  .trust-case-card {
    border-radius: 12px;
  }
}
@media (max-width: 420px) {
  .trust-sec-title {
    font-size: 25px;
    line-height: 1.55;
    padding-bottom: 20px;
  }
  .trust-q {
    font-size: 17px;
  }
  .trust-stat-value strong {
    font-size: 44px;
  }
  .trust-stat-value small {
    font-size: 18px;
  }
  .trust-tabs {
    gap: 6px;
  }
  .trust-tabs button {
    min-width: 70px;
    padding-inline: 20px;
  }
  .trust-case-visual {
    height: 190px;
  }
}
/* Figma node 177:9114 footer */
.footer-figma {
  padding: 57px 0 40px;
  background: #f1f8f7;
  border-top: 1px solid #dfdfdf;
  color: #333;
}
.footer-figma .footer-wrap {
  width: min(1200px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  gap: 35.99px;
  margin-inline: auto;
}
.footer-figma .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  min-height: 91px;
}
.footer-brand-block {
  display: flex;
  flex: 0 1 430px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12.845px;
  padding: 0 7.37px 0.535px 0;
}
.footer-brand {
  display: flex;
  width: 127.716px;
  height: 28px;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.footer-brand-mark {
  width: 17.46px;
  height: 25.32px;
  margin-top: 2.65px;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-brand-text {
  width: 101px;
  height: 28px;
  margin-left: 7.88px;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-lead {
  max-width: none;
  margin: 0;
  color: #656565;
  font-size: 13px;
  line-height: 24.7px;
  font-weight: 400;
  letter-spacing: 0;
}
.footer-lead span {
  display: block;
  white-space: nowrap;
}
.footer-links {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 28px;
  height: 25px;
  color: #333;
  font-size: 13.5px;
  line-height: 24.98px;
  font-weight: 500;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  height: 25px;
  white-space: nowrap;
  color: #333;
}
.footer-figma .footer-copy {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 24px 0 0.19px;
  border-top: 1px solid #dfdfdf;
  color: #656565;
  font-size: 12px;
  line-height: 22.2px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer-figma {
    padding: 62px 0;
  }
  .footer-figma .footer-wrap {
    width: min(100% - 32px, 1200px);
    gap: 24px;
  }
  .footer-figma .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }
  .footer-brand-block {
    flex-basis: auto;
    padding-right: 0;
  }
  .footer-lead {
    max-width: none;
    font-size: 12.5px;
    line-height: 1.9;
  }
  .footer-lead span {
    display: inline;
    white-space: normal;
  }
  .footer-links {
    height: auto;
    gap: 8px 20px;
    font-size: 13px;
  }
  .footer-links a {
    height: 25px;
  }
  .footer-figma .footer-copy {
    padding-top: 20px;
    font-size: 11.5px;
    line-height: 1.8;
    white-space: normal;
  }
}
/* Figma node 177:9189 company page (運営会社) */
.company-hero {
  padding: 89px 0 160px;
  background:
    radial-gradient(
      1100px 760px at 92% -8%,
      rgba(194, 244, 236, 0.55),
      rgba(194, 244, 236, 0) 62%
    ),
    #fff;
}
.company-wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
.company-title {
  margin: 0 0 52px;
  color: var(--ink);
  font-size: 44px;
  font-weight: 900;
  line-height: 62.48px;
  letter-spacing: 0.22px;
  text-align: center;
}
.company-table {
  width: 100%;
  border-top: 1px solid #d9d9d9;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid #d9d9d9;
}
.company-table th,
.company-table td {
  padding: 29px 12px 29px 0;
  color: #000;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.28px;
  text-align: left;
  vertical-align: top;
}
.company-table th {
  width: 193px;
  font-weight: 700;
  white-space: nowrap;
}
.company-table td {
  font-weight: 400;
}
@media (max-width: 768px) {
  .company-hero {
    padding: 40px 0 72px;
  }
  .company-title {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 1.4;
  }
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 8px 0;
    letter-spacing: 0.5px;
  }
  .company-table th {
    padding-bottom: 0;
  }
  .company-table td {
    padding-top: 4px;
    padding-bottom: 24px;
  }
}
/* Contact page (お問い合わせ), content pending */
.contact-hero {
  min-height: calc(100vh - var(--header-height) - 272px);
  padding: 89px 0 160px;
  background:
    radial-gradient(
      1100px 760px at 92% -8%,
      rgba(194, 244, 236, 0.55),
      rgba(194, 244, 236, 0) 62%
    ),
    #fff;
}
.contact-wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
.contact-title {
  margin: 0 0 48px;
  color: var(--ink);
  font-size: 44px;
  font-weight: 900;
  line-height: 62.48px;
  letter-spacing: 0.22px;
  text-align: center;
}
.contact-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.contact-intro {
  width: min(485px, 100%);
  padding: 40px;
  text-align: center;
}
.contact-intro-list {
  text-align: left;
}
.contact-intro-title {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
}
.contact-intro-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.contact-intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}
.contact-intro-list img {
  flex: 0 0 auto;
  margin-top: 2px;
}
.contact-intro-lead {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}
.contact-intro-lead strong {
  color: var(--green-dark);
  font-size: 17px;
}
.contact-form-panel {
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 0 72px;
  }
  .contact-title {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 1.4;
  }
  .contact-intro,
  .contact-form-panel {
    border-radius: 12px;
  }
  .contact-intro {
    padding: 28px 24px;
  }

  .contact-form-panel {
    padding: 0;
  }
  .contact-intro-title {
    font-size: 20px;
  }
}
/* Policy page (個人情報保護方針), content from https://www.iflag.co.jp/policy */
.policy-hero {
  padding: 89px 0 160px;
  background:
    radial-gradient(
      1100px 760px at 92% -8%,
      rgba(194, 244, 236, 0.55),
      rgba(194, 244, 236, 0) 62%
    ),
    #fff;
}
.policy-wrap {
  width: min(840px, calc(100% - 48px));
  margin-inline: auto;
}
.policy-title {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.22px;
  text-align: center;
}
.policy-subtitle {
  position: relative;
  margin: 0 0 48px;
  padding-bottom: 20px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
.policy-subtitle:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: translateX(-50%);
}
.policy-body {
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}
.policy-body p {
  margin: 0 0 28px;
}
.policy-list {
  margin: 0 0 28px;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.policy-list li {
  padding-left: 4px;
}
.policy-dates {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}
.policy-contact {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.policy-contact-title {
  margin: 0 0 12px;
  font-weight: 700;
}
.policy-contact a {
  color: var(--blue);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .policy-hero {
    padding: 40px 0 72px;
  }
  .policy-title {
    margin-bottom: 12px;
    font-size: 24px;
  }
  .policy-subtitle {
    margin-bottom: 32px;
    font-size: 13px;
  }
  .policy-body {
    font-size: 14px;
  }
}
/* Figma node 222:3109 hero CTA block */
.fv-cta-margin {
  display: flex;
  width: min(900px, calc(100vw - 48px));
  max-width: none;
  flex-direction: column;
  align-items: center;
  margin: 80px auto 0;
  padding: 40px 30px;
  border-radius: 16px;
  background: linear-gradient(89.56deg, #1ba394 0.14%, #30c8b7 101.69%);
  box-shadow: 0 4px 10px rgba(27, 163, 148, 0.3);
  color: #fff;
}
.fv-cta-block {
  display: flex;
  width: min(840px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin: 0;
  color: #fff;
}
.fv-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px 30px;
  width: 100%;
}
.fv-cta-item {
  display: flex;
  width: 300px;
  flex: 0 0 300px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fv-cta-caption {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  word-break: break-word;
}
.fv-btn {
  display: inline-flex;
  width: 300px;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px 19px;
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow: 0 6px 9px rgba(196, 196, 196, 0.26);
  font-size: 16.5px;
  line-height: 16.5px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}
.fv-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.99);
}
.fv-btn img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-right: 0;
}
.fv-btn-compare {
  background: #fff;
  color: #1ba394;
  border-color: #1D867B;

}
.fv-btn-contact {
  border-color: #fff;
  background: linear-gradient(90deg, #025ab2 0%, #0084f9 100%);
  color: #fff;
}
.fv-trust {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fv-trust-item {
  display: flex;
  height: 28.67px;
  align-items: center;
  gap: 8px;
  color: #dbf5ea;
  font-size: 14px;
  line-height: 25.9px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.fv-trust-item img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.fv-trust-item b {
  color: #fff;
  font-size: 15.5px;
  line-height: 28.68px;
  font-weight: 900;
}
.fv-trust-sep {
  width: 1px;
  height: 16px;
  flex: 0 0 1px;
  background: #d7efff;
}
@media (max-width: 1024px) {
  .fv-cta-margin {
    margin: 34px auto 0;
  }
}
@media (max-width: 768px) {
  .fv-cta-margin {
    width: 100%;
    margin: 32px auto 0;
    padding: 28px 16px;
  }
  .fv-cta-block {
    gap: 22px;
  }
  .fv-ctas {
    gap: 14px;
  }
  .fv-cta-item {
    width: min(300px, 100%);
    flex-basis: min(300px, 100%);
  }
  .fv-btn {
    width: 100%;
    height: 56px;
    min-height: 56px;
  }
  .fv-cta-caption {
    font-size: 14px;
    line-height: 1.7;
    white-space: normal;
  }
  .fv-trust {
    gap: 6px 10px;
  }
  .fv-trust-sep {
    display: none;
  }
  .fv-trust-item {
    height: auto;
    font-size: 13px;
    line-height: 1.8;
  }
  .fv-trust-item b {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media (max-width: 420px) {
  .fv-cta-margin {
    width: 100%;
    margin-top: 28px;
    padding: 24px 14px;
  }
  .fv-cta-block {
    width: 100%;
  }
  .fv-ctas {
    width: 100%;
  }
  .fv-cta-item {
    width: 100%;
    flex-basis: 100%;
  }
  .fv-trust {
    justify-content: flex-start;
  }
  .fv-trust-item {
    width: 100%;
    justify-content: center;
  }
  .fv-btn {
    font-size: 15.5px;
  }
}

/* Figma node 177:7214 comparison intro semantic section */
.figma-intro-render {
  position: relative;
  overflow: hidden;
  padding: 0 0 30px;
}
.compare-intro-wrap {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: min(1200px, calc(100% - 48px));
  padding-inline: 28px;
}
.compare-intro-head {
  display: flex;
  justify-content: center;
  padding-top: 14px;
  text-align: center;
}
.compare-intro-head h2 {
  position: relative;
  margin: 0 0 4px;
  color: #1c1a17;
  font-size: 44px;
  line-height: 62.48px;
  font-weight: 900;
  letter-spacing: 0.22px;
  text-align: center;
}
.compare-intro-head h2 span {
  display: block;
}
.compare-intro-head h2 mark {
  padding: 0 5px;
  border-radius: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 249, 212, 0) 58%,
    #fff9d4 58%
  );
  color: #1ba394;
}
.compare-intro-head h2:after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 4px;
  background: #1ba394;
}
.compare-intro-body {
  display: flex;
  flex-direction: column;
  gap: 58px;
  max-width: 1140px;
  width: 100%;
  margin-inline: auto;
}
.compare-intro-lead {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}
.compare-intro-lead p {
  margin: 0;
  color: #333;
  font-size: 20px;
  line-height: 39.9px;
  font-weight: 400;
  letter-spacing: 0;
}
.compare-intro-lead strong {
  color: #1ba394;
  font-weight: 800;
}
.compare-intro-lead mark {
  padding: 0 5px;
  background: linear-gradient(
    to bottom,
    rgba(255, 249, 212, 0) 62%,
    #fff9d4 62%
  );
  color: #1c1a17;
  font-weight: 800;
}
.compare-intro-main {
  display: grid;
  grid-template-columns: 528px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}
.compare-axis-visual {
  margin: 0;
  width: 528px;
  max-width: 100%;
}
.compare-axis-visual img {
  width: 100%;
  height: auto;
}
.compare-ai-copy {
  padding-top: 8px;
}
.compare-axis-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  margin: 0 0 18px;
  padding: 5px 18px 6px;
  border-radius: 999px;
  background: #1ba394;
  color: #fff;
  font-size: 15px;
  line-height: 22.2px;
  font-weight: 900;
  letter-spacing: 1.44px;
}
.compare-ai-copy h3 {
  margin: 0 0 24px;
  color: #1ba394;
  font-size: 30px;
  line-height: 43.4px;
  font-weight: 900;
  letter-spacing: 0.28px;
}
.compare-ai-text {
  color: #333;
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.96px;
}
.compare-ai-text p {
  margin: 0;
}
.compare-ai-text strong {
  color: #1ba394;
  font-weight: 800;
}
.compare-trigger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 4px;
}
.compare-trigger {
  position: relative;
  min-height: 157px;
  margin: 0;
  padding: 21px 27px;
  border: 1px solid rgba(234, 234, 234, 0.94);
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 4px 6px rgba(40, 30, 18, 0.07),
    0 12px 16px rgba(40, 30, 18, 0.06);
}
.compare-trigger:after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -11px;
  width: 21px;
  height: 21px;
  transform: rotate(45deg);
  border-right: 1px solid rgba(234, 234, 234, 0.94);
  border-bottom: 1px solid rgba(234, 234, 234, 0.94);
  background: #fff;
}
.compare-trigger span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 2px 11px 3px;
  border-radius: 999px;
  background: #1ba394;
  color: #fff;
  font-size: 12px;
  line-height: 22.2px;
  font-weight: 900;
  letter-spacing: 0.48px;
}
.compare-trigger p {
  margin: 0;
  color: #1c1a17;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}
.compare-intro-footer {
  margin: 0;
  color: #1c1a17;
  font-size: 19px;
  line-height: 38px;
  font-weight: 800;
  text-align: center;
}
.compare-intro-footer strong {
  color: #1ba394;
  font-weight: 900;
}
@media (max-width: 1024px) {
  .compare-intro-wrap {
    padding-inline: 0;
  }
  .compare-intro-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .compare-axis-visual {
    margin-inline: auto;
  }
  .compare-ai-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }
  .compare-trigger-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .figma-intro-render {
    margin-top: 0;
    padding: 56px 0 0;
  }
  .compare-intro-wrap {
    width: min(100% - 32px, 1200px);
    gap: 36px;
  }
  .compare-intro-head h2 {
    font-size: 28px;
    line-height: 1.52;
    letter-spacing: 0;
  }
  .compare-intro-head h2 mark {
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
    font-size: 25px;
  }
  .compare-intro-head h2:after {
    margin-top: 16px;
  }
  .compare-intro-body {
    gap: 36px;
  }
  .compare-intro-lead {
    gap: 16px;
  }
  .compare-intro-lead p {
    font-size: 16px;
    line-height: 2;
    text-align: center;
  }
  .compare-axis-visual {
    width: min(528px, 100%);
    order: 2;
  }
  .compare-ai-copy {
    order: 1;
  }
  .compare-axis-label {
    height: auto;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  .compare-ai-copy h3 {
    font-size: 24px;
    line-height: 1.55;
  }
  .compare-ai-text {
    font-size: 14.5px;
    line-height: 2;
    letter-spacing: 0.02em;
  }
  .compare-trigger-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compare-trigger {
    min-height: 0;
    padding: 19px 22px;
  }
  .compare-intro-footer {
    font-size: 16px;
    line-height: 2;
  }
}
@media (max-width: 420px) {
  .compare-intro-head h2 {
    font-size: 22px;
  }
  .compare-intro-lead p {
    font-size: 15px;
    text-align: center;
  }
  .compare-ai-copy h3 {
    font-size: 22px;
  }
  .compare-trigger p {
    font-size: 14.5px;
  }
}
/* Figma node 222:3152 imageA hero visual */
.hero-image-a {
  position: absolute;
  z-index: 0;
  left: max(744px, calc((100vw - 1200px) / 2 + 744px));
  top: 86px;
  width: min(667px, 34.74vw);
  height: auto;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 1200px) {
  .hero-image-a {
    right: 0;
    left: auto;
  }
}
@media (max-width: 1023px) {
  .hero-image-a {
    display: none;
  }
}
/* Hero background extension for Figma-overlapping CTA node 222:3109 */
.hero {
  overflow-x: clip;
  overflow-y: visible;
  background: transparent;
  position: relative;
  padding: 104px 0 80px;
}

.hero:after {
  content: "";
  position: absolute;
  display: block;
  background: url(./assets/images/top_bg001.jpg) no-repeat center center/cover;
  width: 100%;
  height: 82%;
  left: 0%;
  top: 0;
  z-index: -1;
}

.hero-bg-orb-top {
  position: absolute;
  z-index: 0;
  width: 560px;
  height: 560px;
  right: -120px;
  top: -200px;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(32px);
  background: radial-gradient(
    circle at 35% 35%,
    #ecfdf6 0,
    #aaead3 30%,
    #89e1c1 45%,
    #68d8b0 60%,
    #91e2c5 66%,
    #baebd9 72%,
    rgba(186, 235, 217, 0) 73%
  );
  pointer-events: none;
}
.fv-cta-margin {
  position: relative;
  z-index: 2;
}
.hero-image-a {
  z-index: 1;
}
@media (max-width: 768px) {
  .hero {
    overflow: hidden;
    background: url(./assets/images/sp_top_bg001.jpg) no-repeat center
      center/cover;
  }
  .hero::before {
    width: 560px;
    height: 560px;
    right: -120px;
    left: auto;
    top: -200px;
    bottom: auto;
    border-radius: 50%;
    opacity: 0.55;
    filter: blur(32px);
    background: radial-gradient(
      circle at 35% 35%,
      #ecfdf6 0,
      #aaead3 30%,
      #89e1c1 45%,
      #68d8b0 60%,
      #91e2c5 66%,
      #baebd9 72%,
      rgba(186, 235, 217, 0) 73%
    );
  }
  .hero-bg-orb-top {
    display: none;
  }
  .figma-intro-render {
    margin-top: 0;
  }
}

/* Figma SP header node 218:2011 */
.header-consult > span,
.header-consult > span > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .site-header[data-node-id="218:2011"] {
    min-height: 72px;
    padding: 16px 20px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 2px solid transparent;
    box-shadow: none;
    backdrop-filter: blur(12px);
  }

  .site-header[data-node-id="218:2011"] .brand-logo {
    width: 136.839px;
    height: 30px;
  }

  .site-header[data-node-id="218:2011"] .nav-toggle {
    display: none;
  }

  .site-header[data-node-id="218:2011"] .site-nav {
    position: static;
    inset: auto;
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header[data-node-id="218:2011"] .button-demo {
    display: none;
  }

  .site-header[data-node-id="218:2011"] .header-consult {
    width: 150px;
    height: 38px;
    min-height: 38px;
    padding: 12px 19px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: linear-gradient(90deg, #025ab2 0%, #0084f9 100%);
    box-shadow: 0 6px 9px rgba(196, 196, 196, 0.26);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .site-header[data-node-id="218:2011"] {
    padding-inline: 14px;
  }

  .site-header[data-node-id="218:2011"] .brand-logo {
    width: 128px;
    height: auto;
  }

  .site-header[data-node-id="218:2011"] .header-consult {
    width: 136px;
    padding-inline: 14px;
    font-size: 13px;
  }
}

/* Figma SP hero title node 218:1033 */
.hero-title-inner,
.hero-title-main {
  display: block;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 25px;
  }

  .hero h1[data-node-id="218:1033"] {
    width: min(313.82px, calc(100vw - 61px));
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.19px;
  }

  .hero h1[data-node-id="218:1033"] .hero-title-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.105px;
    width: 100%;
  }

  .hero h1[data-node-id="218:1033"] .hero-title-main {
    width: 100%;
    color: #1c1a17;
    font-size: 25px;
    line-height: 40px;
    font-weight: 900;
    letter-spacing: 0.19px;
    white-space: nowrap;
    margin-bottom: 10px;
  }

  .hero h1[data-node-id="218:1033"] .hero-title-main span {
    width: 100%;
    max-width: none;
    line-height: 30px;
    display: block;
    font-size: 20px;
  }

  .hero h1[data-node-id="218:1033"] mark {
    display: block;
    width: 100%;
    max-width: none;
    height: 28px;
    padding: 0 2.66px;
    border-radius: 3px;
    background: linear-gradient(
      to bottom,
      rgba(255, 249, 212, 0) 55%,
      #fff9d4 55%
    );
    color: #1ba394;
    font-size: 22px;
    font-weight: 900;
    line-height: 27.74px;
    letter-spacing: 0.19px;
    white-space: nowrap;
  }

  .hero h1[data-node-id="218:1033"] mark span {
    display: block;
    width: 100%;
    max-width: none;
    line-height: 27.74px;
  }
}

@media (max-width: 360px) {
  .hero h1[data-node-id="218:1033"] {
    transform: scale(0.94);
    transform-origin: top center;
  }
}
/* Figma SP hero subcopy node 218:1038 */
.hero-lead-inner {
  display: block;
}

@media (max-width: 768px) {
  .hero-lead[data-node-id="218:1038"] {
    padding: 20px 0 20.7px;
    text-align: center;
  }

  .hero-lead[data-node-id="218:1038"] .hero-lead-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 6px;
    white-space: nowrap;
  }

  .hero-lead[data-node-id="218:1038"] .hero-lead-note {
    font-size: 14px;
    line-height: 25px;
    font-weight: 500;
  }

  .hero-lead[data-node-id="218:1038"] strong {
    font-size: 18.65px;
    line-height: 32.9px;
    font-weight: 900;
  }

  .hero-lead[data-node-id="218:1038"] .hero-ai-line {
    display: block;
    max-width: none;
    line-height: 32.9px;
    padding-bottom: 0;
    white-space: nowrap;
  }

  .hero-lead[data-node-id="218:1038"] .hero-ai {
    font-size: 40.58px;
    letter-spacing: 2.43px;
  }

  .hero-lead[data-node-id="218:1038"] .hero-ni {
    font-size: 25px;
  }

  .hero-lead[data-node-id="218:1038"] .hero-rest {
    font-size: 27px;
  }
}

@media (max-width: 360px) {
  .hero-lead[data-node-id="218:1038"] .hero-lead-inner {
    transform: scale(0.94);
    transform-origin: top center;
  }
}
/* Figma SP hero CTA node 218:1045 */
@media (max-width: 768px) {
  .fv-cta-margin[data-node-id="218:1045"] {
    width: min(345px, calc(100vw - 40px));
    margin-top: 24px;
    padding: 20px 15px;
    border-radius: 8px;
    background: linear-gradient(89.88deg, #1ba394 0.14%, #30c8b7 101.69%);
    box-shadow: 0 4px 10px rgba(27, 163, 148, 0.3);
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-cta-block {
    width: 100%;
    gap: 18px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-ctas {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-cta-item {
    width: 300px;
    max-width: 100%;
    flex: 0 0 auto;
    gap: 12px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-cta-caption {
    width: 100%;
    color: #fff;
    font-size: 15px;
    line-height: 27.75px;
    font-weight: 700;
    white-space: nowrap;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-btn {
    width: 300px;
    max-width: 100%;
    height: 54px;
    min-height: 54px;
    padding: 6px 19px;
    border-radius: 999px;
    font-size: 16.5px;
    line-height: 16.5px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-btn img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-areas:
      "production production production"
      "speed sep-bottom cost";
    align-items: center;
    justify-items: center;
    justify-content: center;
    row-gap: 8px;
    column-gap: 9px;
    width: 100%;
    min-height: 71px;
    margin-top: 2px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-item {
    width: auto;
    height: 28.67px;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    line-height: 25.9px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-item:nth-of-type(1) {
    grid-area: production;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-item:nth-of-type(3) {
    grid-area: speed;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-item:nth-of-type(5) {
    grid-area: cost;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-item img {
    width: 18px;
    height: 18px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-item b {
    font-size: 15.5px;
    line-height: 28.68px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-sep {
    display: block;
    width: 1px;
    height: 16px;
    background: #61e0d2;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-sep:nth-of-type(2) {
    display: none;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-sep:nth-of-type(4) {
    grid-area: sep-bottom;
  }
}

@media (max-width: 360px) {
  .fv-cta-margin[data-node-id="218:1045"] {
    width: calc(100vw - 30px);
    padding-inline: 12px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-cta-caption {
    font-size: 14px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust {
    column-gap: 6px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-item {
    gap: 5px;
    font-size: 12.5px;
  }

  .fv-cta-margin[data-node-id="218:1045"] .fv-trust-item b {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .sp-robot {
    display: none;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/* Node 383:25559 - SP fixed bottom quick-action bar */
.sp-fixed-cta {
  display: none;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 50px;
  }

  .sp-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    gap: 1px;
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  .sp-fixed-cta.is-hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }

  .sp-fixed-cta-btn {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-decoration: none;
    box-shadow: 0 -6px 9px rgba(196, 196, 196, 0.26);
  }

  .sp-fixed-cta-demo {
    background: linear-gradient(90deg, #3e9ff6 0%, #3ac7b7 100%);
  }

  .sp-fixed-cta-consult {
    background: linear-gradient(90deg, #025ab2 0%, #0084f9 100%);
  }

  .sp-fixed-cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
}

.hero-compare-chip-b {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-compare-chip-b {
    margin-top: 20px;
  }
}
.fv-cta-margin-b {
  margin-top: 50px;
}
.hero .hero-h1-b {
  font-size: 50px;
  line-height: 76px;
}
