/* ============================================================
   far-saas.com  スタイルシート
   色を変えたいときは、下の :root の値だけ書き換えてください。
   ============================================================ */

:root {
  --navy-900: #12203c;
  --navy-800: #1b2a4b;
  --navy-700: #24365c;
  --navy-600: #2f4171;
  --gold: #d8982c;
  --gold-deep: #8a6210;
  --ink: #1a2233;
  --ink-mid: #4a5568;
  --ink-soft: #6b7688;
  --line: #e2e7ee;
  --bg-tint: #f5f7fa;
  --white: #ffffff;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(18, 32, 60, .06), 0 4px 12px rgba(18, 32, 60, .05);
  --shadow-md: 0 2px 4px rgba(18, 32, 60, .06), 0 12px 32px rgba(18, 32, 60, .09);
  --maxw: 1120px;
  --font: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
          "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
/* 長いメールアドレスが画面幅からはみ出さないようにする */
a[href^="mailto:"] { word-break: break-all; }
h1, h2, h3, h4 { line-height: 1.45; margin: 0; font-weight: 700; letter-spacing: .005em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- 共通レイアウト ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tint { background: var(--bg-tint); }
.section--navy { background: var(--navy-800); color: var(--white); }

.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold); }
.section-title { font-size: 32px; }
.section-lead { margin-top: 14px; color: var(--ink-mid); font-size: 16px; }
.section--navy .section-lead { color: rgba(255, 255, 255, .78); }

.note { font-size: 13.5px; color: var(--ink-soft); line-height: 1.8; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: #2a1c00; }
.btn--primary:hover { background: #c4871f; transform: translateY(-1px); }
.btn--ghost { border-color: rgba(255, 255, 255, .45); color: var(--white); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); }
.btn--outline { border-color: var(--navy-800); color: var(--navy-800); background: var(--white); }
.btn--outline:hover { background: var(--navy-800); color: var(--white); }
.btn--sm { padding: 11px 20px; font-size: 14.5px; }
.btn--block { width: 100%; }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--navy-800); color: var(--gold);
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px; letter-spacing: 0;
}
.logo__text { font-weight: 700; font-size: 18px; color: var(--navy-800); letter-spacing: .02em; }
.logo__sub { font-size: 11.5px; color: var(--ink-soft); font-weight: 400; letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-size: 14.5px; font-weight: 500; color: var(--ink-mid); }
.nav a:hover { color: var(--navy-800); }
.nav a.btn--primary { color: #2a1c00; font-weight: 700; }
.nav a.btn--primary:hover { color: #2a1c00; }
.nav__cta { margin-left: 4px; }

.navtoggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: var(--white); border-radius: 8px; cursor: pointer; padding: 0;
}
.navtoggle span, .navtoggle span::before, .navtoggle span::after {
  display: block; width: 18px; height: 1.5px; background: var(--navy-800); margin: 0 auto; content: ""; position: relative;
}
.navtoggle span::before { position: absolute; top: -6px; }
.navtoggle span::after { position: absolute; top: 6px; }

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  background: var(--navy-800);
  color: var(--white);
  padding: 160px 0 92px;
  overflow: hidden;
}
.hero__deco {
  position: absolute; border-radius: 50%;
  background: var(--navy-600); opacity: .55; pointer-events: none;
}
.hero__deco--1 { width: 460px; height: 460px; top: -140px; right: -110px; }
.hero__deco--2 { width: 300px; height: 300px; bottom: -150px; right: 190px; opacity: .35; }
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { font-size: 48px; line-height: 1.35; letter-spacing: .01em; }
.hero h1 span { display: inline-block; }
.hero__sub { margin-top: 22px; font-size: 19px; color: rgba(255, 255, 255, .85); line-height: 1.8; }
.hero__rule { width: 96px; height: 2px; background: var(--gold); margin: 30px 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28);
  font-size: 14px; color: rgba(255, 255, 255, .9);
}
.chip b { color: var(--gold); font-size: 15px; }

/* ---------- グリッド ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- カード ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.card__num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-800); color: var(--white);
  display: grid; place-items: center; font-size: 15px; font-weight: 700;
  margin-bottom: 16px;
}
.card__title { font-size: 19px; margin-bottom: 14px; color: var(--navy-800); }
.card__list li {
  position: relative; padding-left: 20px; font-size: 15px;
  color: var(--ink-mid); margin-bottom: 8px; line-height: 1.75;
}
.card__list li:last-child { margin-bottom: 0; }
.card__list li::before {
  content: ""; position: absolute; left: 4px; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* ---------- 原因（2列比較） ---------- */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why__col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.why__label { font-size: 19px; color: var(--navy-800); margin-bottom: 6px; }
.why__tag { font-size: 14px; color: var(--gold-deep); font-weight: 700; margin-bottom: 18px; }
.why__conclusion {
  margin-top: 34px; text-align: center;
  background: var(--navy-800); color: var(--white);
  border-radius: var(--radius); padding: 30px 28px;
  font-size: 21px; font-weight: 700; line-height: 1.7;
}
.why__conclusion em { font-style: normal; color: var(--gold); }

/* ---------- ご提案 ---------- */
.propose { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.propose__card {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.propose__card h3 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
.propose__card h3 em { font-style: normal; color: var(--gold); }
.propose__card p { color: rgba(255, 255, 255, .82); font-size: 15.5px; }

/* ---------- デモ ---------- */
.demo__shot {
  display: block; max-width: 1000px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .38);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: transform .2s ease;
}
.demo__shot:hover { transform: translateY(-3px); }
.demo__shot img { width: 100%; height: auto; }
.demo__cta { text-align: center; margin-top: 34px; }
.demo__note { margin-top: 16px; }
.demo__list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1000px; margin: 46px auto 0;
}
.demo__list li {
  position: relative; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .78); font-size: 14.5px; line-height: 1.85;
}
.demo__list b { display: block; color: var(--white); font-size: 16.5px; margin-bottom: 8px; }
.section--navy .note { color: rgba(255, 255, 255, .6); }

/* ---------- 3つの特長 ---------- */
.feature { text-align: center; }
.feature__value {
  font-size: 56px; font-weight: 700; color: var(--gold);
  line-height: 1.2; letter-spacing: .01em;
}
.feature__value small { font-size: 28px; margin-left: 2px; }
.feature__label {
  font-size: 16px; font-weight: 700; color: var(--navy-800);
  margin-top: 6px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.feature__desc { margin-top: 18px; font-size: 15px; color: var(--ink-mid); text-align: left; }

/* ---------- 料金 ---------- */
.plan {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.plan--highlight { border: 2px solid var(--navy-800); box-shadow: var(--shadow-md); }
.plan__badge {
  align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  background: var(--navy-800); color: var(--white);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
/* 「よくお選びいただきます」がある分の高さを他のカードにも確保し、プラン名の位置を揃える */
.plan__badge--ghost { visibility: hidden; }
@media (max-width: 960px) { .plan__badge--ghost { display: none; } }
.plan__name { font-size: 22px; color: var(--navy-800); }
.plan__scope { margin: 16px 0 22px; }
.plan__scope li {
  font-size: 15px; color: var(--ink-mid); padding-left: 22px;
  position: relative; margin-bottom: 6px;
}
.plan__scope li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 11px; height: 6px; border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}
.plan__price { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.plan__price-label { font-size: 13px; color: var(--ink-soft); }
.plan__price-value { font-size: 36px; font-weight: 700; color: var(--navy-800); line-height: 1.3; }
.plan__price-value small { font-size: 17px; margin-left: 2px; }
.plan__price-note { font-size: 13px; color: var(--ink-soft); }

.price-rule {
  margin-top: 28px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
}
.price-rule h3 { font-size: 17px; color: var(--navy-800); margin-bottom: 10px; }
.price-rule p { font-size: 15px; color: var(--ink-mid); }
.price-rule .example {
  margin-top: 14px; background: var(--bg-tint); border-radius: 8px;
  padding: 12px 16px; font-size: 14.5px; color: var(--ink-mid);
}
.price-rule .example b { color: var(--navy-800); }

/* ---------- 支払いイメージ（棒グラフ） ---------- */
.cost { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; }
.chart { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.chart__legend { display: flex; gap: 22px; margin-bottom: 24px; flex-wrap: wrap; }
.chart__legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-mid); }
.chart__swatch { width: 13px; height: 13px; border-radius: 3px; }
.chart__swatch--a { background: #b9c2d1; }
.chart__swatch--b { background: var(--navy-800); }
.chart__row { margin-bottom: 22px; }
.chart__row:last-child { margin-bottom: 0; }
.chart__year { font-size: 14px; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.bar { display: flex; align-items: center; gap: 12px; margin-bottom: 7px; }
.bar__track { flex: 1 1 auto; min-width: 0; }
.bar__fill { display: block; height: 20px; border-radius: 4px; min-width: 4px; }
.bar__fill--a { background: #b9c2d1; }
.bar__fill--b { background: var(--navy-800); }
.bar__value { font-size: 13.5px; color: var(--ink-mid); white-space: nowrap; }
.bar__value b { color: var(--navy-800); }

.cost__point { }
.cost__point-value { font-size: 30px; font-weight: 700; color: var(--navy-800); line-height: 1.4; }
.cost__point-value em { font-style: normal; color: var(--gold); font-size: 46px; }
.cost__point p { margin-top: 16px; color: var(--ink-mid); font-size: 15.5px; }
.cost__point .note { margin-top: 16px; }

/* ---------- 比較表 ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.scroll-hint { display: none; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 10px; }
@media (max-width: 760px) { .scroll-hint { display: block; } }
table.compare {
  width: 100%; min-width: 660px; border-collapse: separate; border-spacing: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; font-size: 15px;
}
table.compare th, table.compare td {
  padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
table.compare thead th { background: var(--bg-tint); font-size: 15px; color: var(--navy-800); }
table.compare thead th.is-own { background: var(--navy-800); color: var(--white); }
table.compare tbody th { font-weight: 700; color: var(--ink); width: 190px; background: #fbfcfe; }
table.compare td { color: var(--ink-mid); }
table.compare td.is-own { background: rgba(216, 152, 44, .07); color: var(--navy-800); font-weight: 700; }
table.compare tr:last-child th, table.compare tr:last-child td { border-bottom: none; }

/* ---------- 安全性 ---------- */
.safety__item { display: flex; gap: 16px; }
.safety__icon {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(216, 152, 44, .16); display: grid; place-items: center;
}
.safety__icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.safety__title { font-size: 17px; color: var(--navy-800); margin-bottom: 6px; }
.safety__desc { font-size: 15px; color: var(--ink-mid); }

/* ---------- 導入の流れ ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px; position: relative;
}
.step__week { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; color: var(--gold-deep); }
.step__num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--navy-800);
  color: var(--white); display: grid; place-items: center;
  font-size: 14px; font-weight: 700; margin: 12px 0 14px;
}
.step__title { font-size: 18px; color: var(--navy-800); margin-bottom: 8px; }
.step__desc { font-size: 14.5px; color: var(--ink-mid); }
.steps-note {
  margin-top: 26px; background: var(--white); border: 1px solid var(--line);
  border-left: none; border-radius: var(--radius); padding: 20px 24px;
  font-size: 15px; color: var(--ink-mid);
}
.steps-note b { color: var(--navy-800); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 14px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 56px 20px 24px;
  font-size: 16.5px; font-weight: 700; color: var(--navy-800); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 26px; top: 50%;
  width: 9px; height: 9px; margin-top: -6px;
  border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .faq__a { padding: 0 24px 22px; color: var(--ink-mid); font-size: 15.5px; }

/* ---------- お問い合わせ ---------- */
.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact__intro h2 { font-size: 30px; line-height: 1.5; }
.contact__intro p { margin-top: 18px; color: rgba(255, 255, 255, .82); font-size: 15.5px; }
.contact__direct { margin-top: 28px; font-size: 15px; color: rgba(255, 255, 255, .82); }
.contact__direct a { color: var(--gold); }

.form {
  background: var(--white); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.req, .opt {
  font-size: 11.5px; font-weight: 700; padding: 2px 7px;
  border-radius: 4px; margin-left: 8px; vertical-align: 1.5px;
}
.req { background: rgba(216, 152, 44, .18); color: var(--gold-deep); }
.opt { background: var(--bg-tint); color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; font-size: 16px; font-family: inherit;
  color: var(--ink); background: var(--white);
  border: 1px solid #cfd7e3; border-radius: 8px; line-height: 1.6;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(47, 65, 113, .13);
}
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-mid); }
.check input { width: 17px; height: 17px; flex: none; margin-top: 4px; }
.check a { color: var(--navy-800); }
.form__submit { margin-top: 8px; }
.form__note { margin-top: 14px; text-align: center; }
.form__status { margin-top: 16px; padding: 14px 16px; border-radius: 8px; font-size: 15px; display: none; }
.form__status--ok { display: block; background: #edf7f0; color: #1c5c33; border: 1px solid #c6e5d0; }
.form__status--ng { display: block; background: #fdf0ee; color: #8c2c1c; border: 1px solid #f2ccc5; }

/* ---------- 会社概要 ---------- */
.company { max-width: 720px; margin: 0 auto; }
.company dl {
  margin: 0; display: grid; grid-template-columns: 190px 1fr;
  border-top: 1px solid var(--line);
}
.company dt, .company dd {
  padding: 16px 8px; border-bottom: 1px solid var(--line); margin: 0; font-size: 15px;
}
.company dt { font-weight: 700; color: var(--navy-800); }
.company dd { color: var(--ink-mid); }

/* ---------- フッター ---------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .72); padding: 48px 0 32px; font-size: 14.5px; }
.footer__top { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; align-items: flex-start; }
.footer .logo__text { color: var(--white); }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { text-decoration: none; color: rgba(255, 255, 255, .72); }
.footer__links a:hover { color: var(--white); }
.footer__copy { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: 13px; color: rgba(255, 255, 255, .55); }

/* ---------- 下層ページ ---------- */
.page { padding: 132px 0 88px; }
.page__title { font-size: 34px; color: var(--navy-800); }
.page__body { max-width: 820px; margin-top: 40px; }
.page__body h2 { font-size: 20px; color: var(--navy-800); margin: 40px 0 12px; }
.page__body h2:first-child { margin-top: 0; }
.page__body p { color: var(--ink-mid); font-size: 15.5px; margin-bottom: 12px; }
.page__body ul { margin: 12px 0; }
.page__body li {
  position: relative; padding-left: 20px; color: var(--ink-mid);
  font-size: 15.5px; margin-bottom: 6px;
}
.page__body li::before {
  content: ""; position: absolute; left: 4px; top: 13px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 960px) {
  .grid--3, .grid--4, .why, .propose, .cost, .contact, .steps, .demo__list {
    grid-template-columns: 1fr;
  }
  .demo__list { gap: 22px; margin-top: 34px; }
  .cost, .contact { gap: 32px; }
  .grid--4 { gap: 20px; }
  .hero h1 { font-size: 38px; }
  .hero__sub { font-size: 17px; }
  .section-title { font-size: 27px; }
  .company dl { grid-template-columns: 1fr; }
  .company dt { padding-bottom: 0; border-bottom: none; }
  .company dd { padding-top: 6px; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; box-shadow: var(--shadow-md);
  }
  .nav.is-open a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav.is-open .nav__cta { margin: 16px 0 0; border-bottom: none; text-align: center; }
  .navtoggle { display: grid; place-items: center; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 62px 0; }
  .wrap { padding: 0 20px; }
  .hero { padding: 128px 0 72px; }
  .hero h1 { font-size: 30px; }
  .hero__sub { font-size: 16px; }
  .hero__deco--1 { width: 300px; height: 300px; top: -100px; right: -90px; }
  .hero__deco--2 { display: none; }
  .hero__actions .btn { width: 100%; }
  .section-title { font-size: 23px; }
  .card, .why__col, .plan, .chart, .form, .price-rule { padding: 24px 20px; }
  .propose__card { padding: 26px 22px; }
  .propose__card h3 { font-size: 22px; }
  .why__conclusion { font-size: 18px; padding: 24px 20px; }
  .feature__value { font-size: 46px; }
  .cost__point-value { font-size: 24px; }
  .cost__point-value em { font-size: 38px; }
  .faq summary { font-size: 15.5px; padding: 17px 48px 17px 20px; }
  .faq .faq__a { padding: 0 20px 18px; }
  .contact__intro h2 { font-size: 24px; }
  .page { padding: 108px 0 62px; }
  .page__title { font-size: 26px; }
}
