/* ============================================================
   顔の見えるFAQ LP styles
   scope: .vfaq-lp-scope（他ページへの影響を避けるため全て接頭辞付き）
   palette: navy #0d0084 / teal #31b9b5 / paper #faf9f7
   ============================================================ */

.vfaq-lp-scope {
  --navy: #0d0084;
  --navy-deep: #070046;
  --teal: #31b9b5;
  --teal-deep: #1f8d8a;
  --ink: #1b2430;
  --muted: #5d6672;
  --line: #e3e1dc;
  --paper: #faf9f7;
  --white: #ffffff;
  --ok: #1f7a4d;
  --err: #b3261e;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "palt";
  line-height: 1.85;
  overflow-x: clip;
}

/* ---- 日本語折り返し品質（全ページ共通の標準） ---- */
/* balance は見出し専用（本文に使うと行が均等に短くなり右側が空く） */
.vfaq-lp-scope h1,
.vfaq-lp-scope h2,
.vfaq-lp-scope h3 {
  text-wrap: balance;
  word-break: auto-phrase;
  letter-spacing: -0.01em;
}
.vfaq-lp-scope .section-lead,
.vfaq-lp-scope .hero-lead {
  text-wrap: pretty;
  word-break: auto-phrase;
}
.vfaq-lp-scope p,
.vfaq-lp-scope li,
.vfaq-lp-scope figcaption,
.vfaq-lp-scope small,
.vfaq-lp-scope .note,
.vfaq-lp-scope .faq-a {
  text-wrap: pretty;
  word-break: auto-phrase;
}
.vfaq-lp-scope .fine-print {
  text-align: left;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.85;
}
/* BudouXが挿入する文節区切り（ZWSP）でのみ折り返す（Safari含む全ブラウザ対応） */
.vfaq-lp-scope .jp-budoux {
  word-break: keep-all;
}
/* 幅制限ブロックは中央寄せが既定 */
.vfaq-lp-scope form,
.vfaq-lp-scope .faq-list {
  margin-inline: auto;
}
@media (max-width: 640px) {
  /* 短い行長では文節折り返しが右側の空きを生むため、本文は通常折り返しに戻す */
  .vfaq-lp-scope p,
  .vfaq-lp-scope li,
  .vfaq-lp-scope figcaption,
  .vfaq-lp-scope small,
  .vfaq-lp-scope .note,
  .vfaq-lp-scope .faq-a {
    word-break: normal;
  }
  .vfaq-lp-scope .section-lead,
  .vfaq-lp-scope .hero-lead {
    word-break: auto-phrase;
  }
}

/* ---- セクション余白の基準（PC 60px / モバイル 44px） ---- */
.vfaq-lp-scope .section-block {
  padding: 60px 20px;
}
.vfaq-lp-scope .section-inner {
  max-width: 1040px;
  margin-inline: auto;
}
.vfaq-lp-scope .section-heading {
  margin-bottom: 32px;
}
.vfaq-lp-scope .section-kicker {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .vfaq-lp-scope .section-block {
    padding: 44px 18px;
  }
}

/* ---- Safari対策の文節塊 ---- */
.vfaq-lp-scope .no-break {
  white-space: nowrap;
}

/* ---- 見出し・リード文の基準 ---- */
/* Tailwind preflight が h1〜h6 の font-size / font-weight を継承値に落とすため明示する。
   vw スケールは使わない（本文サイズをビューポート幅で変えない。ヒーローH1のclampのみ例外）。 */
.vfaq-lp-scope h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--navy);
  margin: 0 0 16px;
}
.vfaq-lp-scope h3 {
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}
.vfaq-lp-scope .section-lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 44em;
  margin: 0;
}
@media (max-width: 640px) {
  .vfaq-lp-scope h2 {
    font-size: 24px;
  }
}

/* ---- Hero ---- */
/* 明るい背景写真に濃紺の文字を重ね、右に実機ウィジェットの画面を置く。
   商品そのものがファーストビューの主役になるようにしている。 */
.vfaq-lp-scope .hero {
  position: relative;
  padding: 84px 20px 56px;
  overflow: hidden;
  background: var(--paper);
}
.vfaq-lp-scope .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vfaq-lp-scope .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}
/* 文字の可読性を担保する白のスクリム（装飾のグラデ玉ではない） */
.vfaq-lp-scope .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(96deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(255, 255, 255, 0.42) 68%, rgba(255, 255, 255, 0.12) 100%);
}
.vfaq-lp-scope .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}
.vfaq-lp-scope .hero-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.vfaq-lp-scope .hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.16;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.vfaq-lp-scope .hero-lead {
  max-width: 26em;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 26px;
}
.vfaq-lp-scope .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* ヒーローの要点。初期費用0円を最初の画面で伝える */
.vfaq-lp-scope .hero-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.vfaq-lp-scope .hero-facts li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.vfaq-lp-scope .hero-facts li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.55em;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--teal-deep);
  border-bottom: 2px solid var(--teal-deep);
  transform: rotate(-45deg);
}
.vfaq-lp-scope .hero-facts small {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.vfaq-lp-scope .hero-fact-zero .hero-fact-value {
  color: var(--teal-deep);
  font-size: 17px;
}
.vfaq-lp-scope .hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.vfaq-lp-scope .primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 8px;
  background: var(--teal);
  color: #06231f;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}
.vfaq-lp-scope .primary-cta:hover {
  background: var(--teal-deep);
  color: var(--white);
}
.vfaq-lp-scope .secondary-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 26px;
  border-radius: 8px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
}
.vfaq-lp-scope .secondary-cta:hover {
  background: var(--navy);
  color: var(--white);
}

/* 実機画面を3台並べて「同じ仕組みで話し手が変わる」を見せる。
   中央を大きく、左右を小さく後ろに置いて奥行きを作る。 */
.vfaq-lp-scope .hero-devices {
  position: relative;
  justify-self: end;
  width: 420px;
  height: 400px;
}
.vfaq-lp-scope .hero-phone {
  position: absolute;
  border-radius: 20px;
  padding: 6px;
  background: #12161c;
  box-shadow: 0 16px 36px rgba(12, 20, 40, 0.26), 0 2px 6px rgba(12, 20, 40, 0.16);
  overflow: hidden;
}
.vfaq-lp-scope .hero-phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}
/* 字幕の帯。動画FAQだと一目で分かる要素なので小さくても残す */
.vfaq-lp-scope .hero-phone-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(8, 12, 24, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  word-break: keep-all;
}
.vfaq-lp-scope .hero-phone-main {
  width: 196px;
  aspect-ratio: 320 / 569;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  z-index: 3;
}
.vfaq-lp-scope .hero-phone-left,
.vfaq-lp-scope .hero-phone-right {
  width: 154px;
  aspect-ratio: 320 / 569;
  top: 74px;
  z-index: 2;
}
.vfaq-lp-scope .hero-phone-left {
  left: 0;
  transform: rotate(-7deg);
}
.vfaq-lp-scope .hero-phone-right {
  right: 0;
  transform: rotate(7deg);
}
.vfaq-lp-scope .hero-phone-left .hero-phone-caption,
.vfaq-lp-scope .hero-phone-right .hero-phone-caption {
  font-size: 9px;
  bottom: 9px;
}

@media (max-width: 900px) {
  .vfaq-lp-scope .hero {
    padding: 68px 18px 0;
  }
  .vfaq-lp-scope .hero::after {
    background: linear-gradient(178deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.55) 100%);
  }
  .vfaq-lp-scope .hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
  .vfaq-lp-scope .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }
  .vfaq-lp-scope .hero-lead {
    font-size: 16px;
    max-width: none;
  }
  .vfaq-lp-scope .hero-facts {
    margin-bottom: 18px;
    gap: 8px 18px;
  }
  .vfaq-lp-scope .hero-lead {
    margin-bottom: 20px;
  }
  /* モバイルはヒーローが縦に伸びすぎないよう、3台を小さくして下端で切る */
  .vfaq-lp-scope .hero-devices {
    justify-self: center;
    width: 300px;
    height: 168px;
    overflow: hidden;
  }
  .vfaq-lp-scope .hero-phone-main { width: 132px; top: 0; }
  .vfaq-lp-scope .hero-phone-left,
  .vfaq-lp-scope .hero-phone-right { width: 106px; top: 42px; }
  .vfaq-lp-scope .hero-phone-caption { display: none; }
}


/* ---- Problem ---- */
.vfaq-lp-scope .problem {
  background: var(--white);
}
.vfaq-lp-scope .problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.vfaq-lp-scope .problem-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 20px;
  background: var(--paper);
}
.vfaq-lp-scope .problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.vfaq-lp-scope .problem-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.vfaq-lp-scope .problem-close {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  max-width: 34em;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .vfaq-lp-scope .problem-grid {
    grid-template-columns: 1fr;
  }
  .vfaq-lp-scope .problem-close {
    text-align: left;
  }
}

/* ---- How it works ---- */
.vfaq-lp-scope .step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.vfaq-lp-scope .step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.vfaq-lp-scope .step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.vfaq-lp-scope .step-num {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.vfaq-lp-scope .step-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.vfaq-lp-scope .step-body p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* ---- Demo ---- */
.vfaq-lp-scope .demo {
  background: var(--white);
  text-align: center;
}
.vfaq-lp-scope .demo .section-lead {
  max-width: 40em;
  margin-inline: auto;
}
.vfaq-lp-scope .demo .fine-print {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 640px) {
  .vfaq-lp-scope .demo {
    text-align: left;
  }
  .vfaq-lp-scope .demo .section-lead {
    text-align: left;
  }
}

/* ---- Use cases ---- */
.vfaq-lp-scope .usecase-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
}
.vfaq-lp-scope .usecase-item {
  border-top: 3px solid var(--teal);
  padding-top: 16px;
}
.vfaq-lp-scope .usecase-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal-deep);
  margin: 0 0 8px;
}
.vfaq-lp-scope .usecase-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.vfaq-lp-scope .usecase-item p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.vfaq-lp-scope .usecase-note {
  margin-top: 12px !important;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px !important;
}
.vfaq-lp-scope .usecase-close {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  max-width: 36em;
  margin-inline: auto;
}
@media (max-width: 900px) {
  .vfaq-lp-scope .usecase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vfaq-lp-scope .usecase-close {
    text-align: left;
  }
}

/* ---- More（広告的な使い方）: 活用事例と同じ組みで、背景の色味だけ変えて別トピックだと分からせる ---- */
.vfaq-lp-scope .more {
  background: #f1f7f7;
}
.vfaq-lp-scope .more .fine-print {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

/* ---- Features ---- */
.vfaq-lp-scope .features {
  background: var(--white);
}
.vfaq-lp-scope .feature-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.vfaq-lp-scope .feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 18px;
}
.vfaq-lp-scope .feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
}
.vfaq-lp-scope .feature-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px) {
  .vfaq-lp-scope .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .vfaq-lp-scope .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Production ---- */
.vfaq-lp-scope .production {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.94);
}
.vfaq-lp-scope .production .section-kicker {
  color: var(--teal);
}
.vfaq-lp-scope .production h2 {
  color: var(--white);
}
.vfaq-lp-scope .production .section-lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 40em;
}
.vfaq-lp-scope .production-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: prod;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.vfaq-lp-scope .production-list li {
  counter-increment: prod;
  border-top: 2px solid var(--teal);
  padding-top: 16px;
}
.vfaq-lp-scope .production-list li::before {
  content: "0" counter(prod);
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 8px;
}
.vfaq-lp-scope .production-list h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.vfaq-lp-scope .production-list p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
@media (max-width: 768px) {
  .vfaq-lp-scope .production-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---- Price ---- */
.vfaq-lp-scope .price {
  background: var(--white);
}
/* 単一プランなので反復アイテムのカードにはせず、余白と罫線で組む */
.vfaq-lp-scope .price-plan {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 24px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 8px;
  background: var(--paper);
}
.vfaq-lp-scope .price-plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal-deep);
  margin: 0 0 6px;
}
.vfaq-lp-scope .price-figures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.vfaq-lp-scope .price-figure-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 2px;
}
.vfaq-lp-scope .price-figure-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  color: var(--navy);
}
.vfaq-lp-scope .price-num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.vfaq-lp-scope .price-unit {
  font-size: 17px;
  font-weight: 700;
}
.vfaq-lp-scope .price-unit small {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
/* 初期費用0円がこの商品のいちばんの障壁除去なので、色と下線で他より強く出す */
.vfaq-lp-scope .price-figure-zero .price-figure-label {
  color: var(--teal-deep);
}
.vfaq-lp-scope .price-figure-zero .price-figure-value {
  color: var(--teal-deep);
}
.vfaq-lp-scope .price-figure-zero .price-num {
  font-size: 56px;
}
@media (max-width: 520px) {
  .vfaq-lp-scope .price-figures {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.vfaq-lp-scope .price-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.vfaq-lp-scope .price-includes li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
}
.vfaq-lp-scope .price-includes li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--teal-deep);
  border-bottom: 2px solid var(--teal-deep);
  transform: rotate(-45deg);
}
@media (max-width: 640px) {
  .vfaq-lp-scope .price-plan {
    padding: 22px 18px;
  }
  .vfaq-lp-scope .price-num {
    font-size: 38px;
  }
}

/* ---- FAQ ---- */
.vfaq-lp-scope .faq-list {
  max-width: 800px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.vfaq-lp-scope .faq-list details {
  border-bottom: 1px solid var(--line);
}
.vfaq-lp-scope .faq-list summary {
  cursor: pointer;
  padding: 18px 34px 18px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  list-style: none;
  line-height: 1.6;
}
.vfaq-lp-scope .faq-list summary::-webkit-details-marker {
  display: none;
}
.vfaq-lp-scope .faq-list summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--teal-deep);
  border-bottom: 2px solid var(--teal-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.vfaq-lp-scope .faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}
.vfaq-lp-scope .faq-a {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
}

/* ============================================================
   11 CTAバンド・フォーム（subsc-design から移植。gold→teal、角丸は8px以下に統一）
   ============================================================ */
.vfaq-lp-scope .cta-band {
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 70%);
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
}
.vfaq-lp-scope .cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.vfaq-lp-scope .cta-band > p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: 15.5px;
}

.vfaq-lp-scope .contact-form-lead {
  font-size: 15px;
  color: var(--muted);
  text-wrap: pretty;
  word-break: auto-phrase;
}
.vfaq-lp-scope .contact-form-section .section-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.vfaq-lp-scope .lead-form {
  max-width: 720px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 36px;
  display: grid;
  gap: 20px;
}
.vfaq-lp-scope .lead-form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.vfaq-lp-scope .form-field {
  display: grid;
  gap: 7px;
}
.vfaq-lp-scope .form-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}
.vfaq-lp-scope .form-label em {
  color: var(--err);
  font-style: normal;
  margin-left: 3px;
}
.vfaq-lp-scope .form-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}
.vfaq-lp-scope .lead-form input[type="text"],
.vfaq-lp-scope .lead-form input[type="email"],
.vfaq-lp-scope .lead-form input[type="tel"],
.vfaq-lp-scope .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.vfaq-lp-scope .lead-form input:focus,
.vfaq-lp-scope .lead-form textarea:focus {
  outline: none;
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(49, 185, 181, 0.24);
  background: var(--white);
}
.vfaq-lp-scope .form-field-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  cursor: pointer;
}
.vfaq-lp-scope .form-field-consent input {
  margin-top: 4px;
}
.vfaq-lp-scope .form-field-consent a {
  color: var(--navy);
  text-decoration: underline;
}
.vfaq-lp-scope .form-field-consent em {
  color: var(--err);
  font-style: normal;
}
.vfaq-lp-scope .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.vfaq-lp-scope .lead-form-actions {
  text-align: center;
}
.vfaq-lp-scope .lead-form-submit {
  width: 100%;
  max-width: 380px;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
}
.vfaq-lp-scope .lead-form-submit:disabled {
  opacity: 0.6;
  cursor: default;
}
.vfaq-lp-scope .lead-form-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted);
}
.vfaq-lp-scope .form-feedback {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  min-height: 1em;
}
.vfaq-lp-scope .form-feedback.is-success {
  color: var(--ok);
}
.vfaq-lp-scope .form-feedback.is-error {
  color: var(--err);
}
@media (max-width: 640px) {
  .vfaq-lp-scope .lead-form {
    padding: 28px 20px;
  }
  .vfaq-lp-scope .lead-form-row-double {
    grid-template-columns: 1fr;
  }
  .vfaq-lp-scope .contact-form-section .section-heading {
    text-align: left;
  }
}
