@charset "UTF-8";

/* =========================================================
   フリーランス顧問弁護士LP スタイルシート
   ---------------------------------------------------------
   目次
   01. デザイントークン（CSS変数）
   02. ベース / リセット
   03. レイアウト
   04. ヘッダー / モバイルナビ
   05. セクション共通
   06. ボタン
   07. ヒーロー（FV）
   08. お悩み（worry）
   09. おすすめ対象（target）
   10. できること（feature）
   11. 選ばれる理由（reason）
   12. 料金（price）
   13. ご利用の流れ（flow）
   14. よくある質問（faq）
   15. 下部CTA（cta）
   16. フッター（footer）
   17. 追従CTA（mobile sticky）
   18. レスポンシブ
   ========================================================= */


/* 01. デザイントークン ------------------------------------ */
:root {
  /* ブランドカラー（LINEグリーン系） */
  --line: #06C755;
  --line-dark: #05a546;
  --line-soft: #e8f9ef;
  --line-bg: #f1faf4;

  /* テキスト・地色 */
  --ink: #16241c;
  --text: #33403a;
  --text-sub: #5b6862;
  --text-light: #8a958f;
  --surface: #ffffff;
  --bg: #f6f9f7;
  --border: #e3ebe6;
  --border-soft: #eef3f0;

  /* シャドウ */
  --shadow-sm: 0 1px 3px rgba(20, 36, 28, .06), 0 1px 2px rgba(20, 36, 28, .04);
  --shadow-lg: 0 18px 50px rgba(20, 36, 28, .12);

  /* 角丸・幅 */
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1080px;
}


/* 02. ベース / リセット ----------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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


/* 03. レイアウト ------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}


/* 04. ヘッダー / モバイルナビ ------------------------------ */
.hd {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.hd.scrolled {
  box-shadow: var(--shadow-sm);
}

.hd .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 66px;
}

.hd__logo img {
  width: auto;
  height: 48px;
}

.hd__nav {
  display: none;
  gap: 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-sub);
}

.hd__nav a:hover {
  color: var(--line-dark);
}

.hd .hd__cta {
  display: none;
}

.hd__cta {
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(6, 199, 85, .3);
}

.hd__cta:hover {
  background: var(--line-dark);
}

.hd__cta i {
  font-size: 15px;
}

.mnav .hd__cta {
  display: inline-flex;
}

.hd__burger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
}

.hd__burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mnav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(22, 36, 28, .5);
}

.mnav.open {
  display: block;
}

.mnav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 320px;
  height: 100%;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.mnav__panel a {
  padding: 13px 8px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}

.mnav__close {
  align-self: flex-end;
  margin-bottom: 6px;
  font-size: 24px;
  color: var(--text-sub);
  background: none;
  border: 0;
  cursor: pointer;
}


/* 05. セクション共通 --------------------------------------- */
section {
  padding: 60px 0;
}

.sec-head {
  margin-bottom: 38px;
  text-align: center;
}

.sec-head .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 999px;
}

.sec-head h2 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .01em;
  color: var(--ink);
}

.sec-head h2 .accent {
  color: var(--line-dark);
}

.sec-head p {
  margin-top: 12px;
  font-size: 14.5px;
  text-align: left;
  color: var(--text-sub);
}

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

.bg-white {
  background: var(--surface);
}


/* 06. ボタン ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  text-align: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: none;
}

.btn--line {
  padding: 16px 34px;
  font-size: 17px;
  color: #fff;
  background: var(--line);
  box-shadow: 0 8px 22px rgba(6, 199, 85, .34);
}

.btn--line:hover {
  background: var(--line-dark);
}

.btn--line i {
  font-size: 20px;
}

.btn--ghost {
  padding: 12px 24px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  color: var(--line-dark);
  border-color: var(--line);
}

.btn--block {
  display: flex;
  width: 100%;
}


/* 07. ヒーロー（FV） --------------------------------------- */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #EDF8F2;
}

.hero__img {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
}

.hero__img img {
  display: block;
  width: 100%;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 430px;
  margin: 0 auto;
  padding: 24px 20px 20px;
}

.hero__subcta {
  font-size: 12.5px;
  text-align: center;
  color: var(--text-sub);
}

.hero__subcta a {
  font-weight: 700;
  color: var(--line-dark);
  border-bottom: 1px solid var(--line-soft);
}


/* 08. お悩み（worry） -------------------------------------- */
.worry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.worry-card {
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.worry-card__h {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.worry-card__ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 18px;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 11px;
}

.worry-card__h h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.worry-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}

.worry-card li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
}

.worry-card li::before {
  content: "\f059";
  position: absolute;
  left: 0;
  top: 2px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: #c9d6cf;
}

.worry-note {
  margin-top: 38px;
  text-align: center;
}

.worry-note .big {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
}

.worry-note p {
  font-size: 14.5px;
  text-align: left;
  color: var(--text-sub);
}


/* 09. おすすめ対象（target） ------------------------------- */
.target-lead {
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: var(--text);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  max-width: 880px;
  margin: 0 auto;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  background: var(--line-bg);
  border: 1px solid transparent;
  border-radius: 8px;
}

.chip i {
  margin-right: 6px;
  font-size: 12px;
  color: var(--line-dark);
}

.chip-cats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto 30px;
}

.chip-cat__h {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: flex-start;
  margin-bottom: 11px;
  font-size: 13px;
  font-weight: 700;
  color: var(--line-dark);
}

.chip-cat__h i {
  font-size: 13px;
}

.chip-cat .chips {
  margin: 0;
}

.stage-box {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 26px;
  background: var(--line-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.stage-box h3 {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
}

.stage-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stage-list div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  width: 100%;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.stage-list i {
  flex: none;
  margin-top: 2px;
  font-size: 16px;
  color: var(--line-dark);
}


/* 10. できること（feature） -------------------------------- */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feat-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.feat-card__ic {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 13px;
  font-size: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--line), var(--line-dark));
  border-radius: 13px;
  box-shadow: 0 5px 14px rgba(6, 199, 85, .28);
}

.feat-card h3 {
  margin-bottom: 7px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}

.feat-card p {
  font-size: 13px;
  line-height: 1.78;
  color: var(--text-sub);
}


/* 11. 選ばれる理由（reason） ------------------------------- */
.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.reason-card {
  display: flex;
  gap: 15px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.reason-card__ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 50%;
}

.reason-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.reason-card p {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--text-sub);
}

.reason-card .note {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-light);
}

.reason-closing {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
}


/* 12. 料金（price） --------------------------------------- */
.price-card {
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.price-card__top {
  padding: 26px 24px 24px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--line), var(--line-dark));
}

.price-card__top .plan {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  opacity: .95;
}

.price-card__top .catch {
  margin-bottom: 14px;
  font-size: 13px;
  opacity: .92;
}

.price-card__top .main {
  font-size: 18px;
  font-weight: 700;
}

.price-card__top .main b {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: .01em;
}

.price-card__top .tax {
  font-size: 13px;
  font-weight: 500;
}

.price-card__year {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
}

.price-card__year s {
  font-weight: 500;
  opacity: .8;
}

.price-card__body {
  padding: 24px;
}

.price-feat {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.price-feat li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 4px;
  border-bottom: 1px dashed var(--border);
}

.price-feat li:last-child {
  border-bottom: 0;
}

.price-feat .k {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.price-feat .k i {
  width: 20px;
  text-align: center;
  color: var(--line-dark);
}

.price-feat .v {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--line-dark);
}

.price-pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.price-pay span {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-sub);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.price-foot {
  margin-top: 18px;
  font-size: 13px;
  text-align: center;
  color: var(--text-sub);
}


/* 13. ご利用の流れ（flow） --------------------------------- */
.flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.flow-step {
  position: relative;
  display: flex;
  gap: 16px;
  padding-bottom: 26px;
}

.flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--line-soft);
}

.flow-step__num {
  flex: none;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 15px;
  font-weight: 900;
  color: var(--line-dark);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 50%;
}

.flow-step--start .flow-step__num {
  color: #fff;
  background: var(--line);
}

.flow-step__body {
  padding-top: 4px;
}

.flow-step__body .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--line-dark);
}

.flow-step__body h3 {
  margin-top: 2px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
}

.flow-need {
  max-width: 720px;
  margin: 8px auto 0;
  padding: 18px 22px;
  font-size: 13.5px;
  color: var(--text);
  background: var(--line-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
}

.flow-need b {
  color: var(--ink);
}

.flow-need i {
  margin-right: 8px;
  color: var(--line-dark);
}


/* 14. よくある質問（faq） ---------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .qmark {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 13px;
  font-weight: 900;
  color: var(--line-dark);
  background: var(--line-soft);
  border-radius: 7px;
}

.faq summary .chev {
  margin-left: auto;
  color: var(--text-light);
  transition: none;
}

.faq details[open] summary .chev {
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 20px 18px 58px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-sub);
}


/* 15. 下部CTA（cta） -------------------------------------- */
.cta {
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #1f3a2c);
}

.cta h2 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}

.cta h2 .hl {
  color: var(--line);
}

.cta p {
  margin-bottom: 26px;
  font-size: 14.5px;
  opacity: .9;
}

.cta .btn--line {
  margin: 0 auto;
}

.cta__sub {
  margin-top: 18px;
  font-size: 13px;
  opacity: .85;
}

.cta__search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 13.5px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
}

.cta__search i {
  color: var(--line);
}

.cta__search b {
  font-weight: 700;
}

.cta__notes {
  max-width: 560px;
  margin: 28px auto 0;
  padding: 18px 22px;
  text-align: left;
  background: rgba(255, 255, 255, .07);
  border-radius: var(--radius-sm);
}

.cta__notes h4 {
  margin-bottom: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  opacity: .9;
}

.cta__notes ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
}

.cta__notes li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  line-height: 1.7;
  opacity: .82;
}

.cta__notes li::before {
  content: "\f105";
  position: absolute;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--line);
}


/* 16. フッター（footer） ----------------------------------- */
.ft {
  padding: 48px 0 26px;
  font-size: 13px;
  color: #c7d2cc;
  background: #0f1813;
}

.ft__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ft__col h3 {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--line);
}

.ft__col .zip {
  margin-bottom: 2px;
  font-size: 12.5px;
  color: #9fb0a8;
}

.ft__col .addr {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #e3ece8;
}

.ft__map {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #9fb0a8;
  border-bottom: 1px solid transparent;
}

.ft__map:hover {
  color: #fff;
  border-color: var(--line);
}

.ft__map i {
  color: var(--line);
}

.ft__dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 13.5px;
}

.ft__dl dt {
  font-size: 12.5px;
  white-space: nowrap;
  color: #9fb0a8;
}

.ft__dl dt i {
  margin-right: 5px;
  color: var(--line);
}

.ft__dl dd {
  color: #e3ece8;
}

.ft__dl dd a {
  font-weight: 700;
  color: #fff;
}

.ft__dl dd a:hover {
  color: var(--line);
}

.ft__disc {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ft__disc ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
}

.ft__disc li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.75;
  color: #9fb0a8;
}

.ft__disc li::before {
  content: "\f111";
  position: absolute;
  left: 2px;
  top: 8px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 5px;
  color: var(--line);
}

.ft__privacy {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ft__privacy summary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 2px;
  font-size: 13px;
  font-weight: 700;
  color: #e3ece8;
  list-style: none;
  cursor: pointer;
}

.ft__privacy summary::-webkit-details-marker {
  display: none;
}

.ft__privacy summary i.lead {
  color: var(--line);
}

.ft__privacy summary .chev {
  margin-left: auto;
  font-size: 12px;
  color: #7e8e87;
}

.ft__privacy details[open] summary .chev,
.ft__privacy[open] summary .chev {
  transform: rotate(180deg);
}

.ft__privacy__body {
  max-height: 300px;
  padding: 4px 2px 22px;
  overflow-y: auto;
}

.ft__privacy__body h4 {
  margin: 14px 0 5px;
  font-size: 12px;
  font-weight: 700;
  color: #c7d2cc;
}

.ft__privacy__body p {
  font-size: 11.5px;
  line-height: 1.7;
  color: #8ea098;
}

.ft__copy {
  margin-top: 26px;
  font-size: 11.5px;
  line-height: 1.8;
  text-align: center;
  color: #7e8e87;
}


/* 17. 追従CTA（mobile sticky） ----------------------------- */
.mcta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(20, 36, 28, .08);
}

.mcta .btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

body {
  padding-bottom: 76px;
}


/* 18. レスポンシブ ----------------------------------------- */
@media (min-width: 640px) {
  body {
    font-size: 16px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .sec-head h2 {
    font-size: 28px;
  }

  .sec-head p {
    text-align: center;
  }

  .hd .wrap {
    height: 80px;
  }

  .hd__logo img {
    height: 64px;
  }

  .hd .hd__cta {
    display: inline-flex;
  }

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

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

  .ft__info {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }

  .chips {
    gap: 8px;
  }

  .chip {
    padding: 7px 14px;
    font-size: 13.5px;
  }

  .worry-note p {
    text-align: center;
  }
}

@media (min-width: 960px) {
  section {
    padding: 80px 0;
  }

  html {
    scroll-padding-top: 106px;
  }

  .sec-head h2 {
    font-size: 31px;
  }

  .hd .wrap {
    height: 98px;
  }

  .hd__logo img {
    height: 86px;
  }

  .hd__nav {
    display: flex;
  }

  .hd__burger {
    display: none;
  }

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

  .mcta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}
