/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

:root {
  --bg: #FFFFFF;
  --surface: #F7F7F7;
  --border: #E5E5E5;
  --text-primary: #111111;
  --text-secondary: #666666;
  --text-muted: #999999;
  --accent: #E24A2F;
  --accent-hover: #C43D24;
  --accent-light: #FBE8E3;
  --success: #2F8F5E;
  --warning: #C48A1A;
  --error: #C43D24;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --shadow-card: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-header: 0 1px 4px rgba(0,0,0,0.06);
}

/* モバイル下部固定CTA */
.mobile-bottom-cta {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-bottom-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 56px;
    background: var(--accent);
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 90;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.08);
  }
  .mobile-bottom-cta:hover {
    background: var(--accent-hover);
    color: #FFFFFF;
  }
  body:not(.home) {
    padding-bottom: 56px;
  }
}

/* ============================================================
   メンズTTクリニック HP body styles

   Child Theme の style.css の末尾に追記する。
   前提: :root で --bg / --surface / --border / --text-primary /
   --text-secondary / --text-muted / --accent / --accent-hover /
   --accent-light / --radius-sm / --radius-md / --radius-lg /
   --shadow-card / --shadow-card-hover が定義済み
   （00_前提と初期設定.md §2.6 参照）
   ============================================================ */

/* ---- スクロール調整（固定ヘッダー分の余白） ---- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
@media (max-width: 1023px) {
  html { scroll-padding-top: 56px; }
}

/* ---- Woodmart グローバル SVG リセット（重要）
   Woodmart の svg { width: 100%; height: auto } を防ぐため、
   HP セクション内の全 SVG は明示 attribute 幅高さに従わせる ---- */
.hp-section svg {
  width: auto;
  height: auto;
  max-width: none;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ---- Elementor 側の制約の最小限リセット ---- */

/* HTML ウィジェットラッパーの余白リセット（FV 上の謎の隙間対策）*/
.elementor-widget-html > .elementor-widget-container {
  padding: 0;
  margin: 0;
}

/* Elementor Container の幅を 1400px にする
   （管理画面 サイト設定 → レイアウト でも設定できるが、
   ここで CSS 変数を直接指定して確実に効かせる。!important 不要）*/
.e-con {
  --container-max-width: 1400px;
}

/* ヘッダー ログインボタンの CSS は WordPress 追加CSS に集約
   （Woodmart の !important ルールを上回るには specificity 0,3,1 以上必要・
   詳細は 03_HP.md 参照） */

/* ---- 画面サイズユーティリティ ---- */
.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 767px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* ---- セクション基盤 ----
   width: 100vw + margin: calc(50% - 50vw) で親コンテナ（Elementor Container 1400px）
   の幅制約から抜けて、セクション背景を viewport 全幅に伸ばす（フルブリード）。
   これは有名な CSS テクニックで !important 不要。
   中身の .hp-container / .hp-hero__grid が 1180px で中央寄せされるので、
   コンテンツ幅は 1180px のまま維持される。*/
.hp-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 100px 32px;
  background: var(--bg);
  overflow: hidden;
  box-sizing: border-box;
}
.hp-section--surface { background: var(--surface); }

.hp-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hp-container--narrow { max-width: 900px; }
.hp-container--wide { max-width: 1180px; }

/* ---- 共通タイポ ---- */
.hp-eyebrow {
  font: 700 13px/1 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-align: center;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.hp-heading {
  font: 700 44px/1.4 "Noto Sans JP", sans-serif;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 56px;
  letter-spacing: -0.01em;
}
/* subheading が続くときはタイトル下余白を詰める（subheading側で余白を担当）*/
.hp-heading:has(+ .hp-subheading) { margin-bottom: 20px; }
.hp-subheading {
  font: 400 17px/1.7 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 0 64px;
}
.hp-accent-text {
  color: var(--accent);
  font-weight: 700;
}

/* ---- ボタン ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  font-size: 17px;
  padding: 22px 40px;
  min-width: 240px;
  box-shadow: 0 4px 14px rgba(226, 74, 47, 0.25);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226, 74, 47, 0.35);
}
.btn-secondary {
  background: #FFFFFF;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
  font-size: 17px;
  padding: 20px 40px;
  min-width: 240px;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--text-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ============================================================
   1. FV
   ============================================================ */
.hp-hero {
  padding: 8px 32px 72px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF8F6 100%);
  overflow: hidden;
}

/* Flexbox で確実に 2カラム化。max-width をここに直接持たせて
   .hp-container 依存を排除（Elementor paste で div が消えても効く）*/
.hp-hero__grid {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.hp-hero__text {
  flex: 1 1 55%;
  min-width: 0;
  text-align: left;
}
.hp-hero__visual {
  flex: 0 0 42%;
  min-width: 0;
}

.hp-hero__eyebrow {
  display: inline-block;
  font: 700 13px/1 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 8px 14px;
  border-radius: 999px;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.hp-hero__title {
  font: 700 56px/1.35 "Noto Sans JP", sans-serif;
  color: var(--text-primary);
  text-align: left;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.hp-hero__sub {
  font: 400 18px/1.9 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
  text-align: left;
  margin: 0 0 40px;
}
.hp-hero__ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 48px;
}

/* バッジ（横並び pill 型・レバクリ準拠・1行表示・3つ完全同じ高さ強制）*/
.hp-hero__badges {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hp-hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 72px !important;
  min-height: 72px !important;
  max-height: 72px !important;
  padding: 0 26px;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 18px;
  font: 700 17px/1.3 "Noto Sans JP", sans-serif;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.hp-hero__badges li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
}
.hp-hero__badges li svg {
  color: var(--accent);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* FV画像 */
.hp-hero__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
}
.hp-hero__image--placeholder {
  background: linear-gradient(135deg, var(--accent-light) 0%, #FFFFFF 100%);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: none;
}
.hp-hero__image--placeholder .label {
  font: 700 32px/1.3 "Noto Sans JP", sans-serif;
  color: var(--accent);
}
.hp-hero__image--placeholder .note {
  font: 400 13px/1.7 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
}

/* ============================================================
   2. 特徴
   ============================================================ */
.hp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hp-feature {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 56px 40px 48px;
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.04);
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: left;
  position: relative;
}
.hp-feature:hover {
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
  transform: translateY(-6px);
}
.hp-feature__num {
  position: absolute;
  top: 32px;
  right: 40px;
  font: 700 40px/1 "Inter", sans-serif;
  color: var(--accent-light);
  letter-spacing: -0.03em;
}
.hp-feature__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px;
}
.hp-feature__icon-wrap svg {
  color: var(--accent);
}
.hp-feature__title {
  font: 700 24px/1.5 "Noto Sans JP", sans-serif;
  color: var(--text-primary);
  margin: 0 0 16px;
}
.hp-feature__body {
  font: 400 15px/1.9 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================================
   4. 取扱薬剤
   ============================================================ */
.hp-drugs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-drug {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.hp-drug:hover {
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
  color: inherit;
  transform: translateY(-4px);
  border-color: var(--accent-light);
}
.hp-drug__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--surface);
  display: block;
}
.hp-drug__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font: 500 15px/1.4 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
  background: linear-gradient(135deg, var(--surface) 0%, #FFFFFF 100%);
  border-bottom: 1px dashed var(--border);
}
.hp-drug__body {
  padding: 24px 24px 28px;
}
.hp-drug__badge {
  display: inline-block;
  font: 700 12px/1 "Noto Sans JP", sans-serif;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.hp-drug__badge--approved {
  background: rgba(47, 143, 94, 0.10);
  color: #2F8F5E;
}
.hp-drug__badge--unapproved {
  background: rgba(196, 138, 26, 0.10);
  color: #C48A1A;
}
.hp-drug__name {
  font: 700 18px/1.5 "Noto Sans JP", sans-serif;
  color: var(--text-primary);
  margin: 0 0 16px;
}
.hp-drug__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 8px;
}
.hp-drug__price {
  font: 700 36px/1 "Inter", sans-serif;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hp-drug__price-unit {
  font: 700 15px/1 "Noto Sans JP", sans-serif;
  color: var(--accent);
}
.hp-drug__note {
  font: 400 13px/1.6 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================================
   5. 料金
   ============================================================ */
.hp-pricing__wrap {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.04);
}
.hp-pricing__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.hp-pricing__table th,
.hp-pricing__table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font: 400 15px/1.5 "Noto Sans JP", sans-serif;
  color: var(--text-primary);
}
.hp-pricing__table thead th {
  background: var(--text-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  border-bottom: none;
  letter-spacing: 0.02em;
  padding-top: 22px;
  padding-bottom: 22px;
}
.hp-pricing__table thead th:not(:first-child) { text-align: right; }
.hp-pricing__table thead th.pricing-highlight {
  background: var(--accent);
  color: #FFFFFF;
  position: relative;
}
.hp-pricing__table .group-row td {
  background: var(--accent-light);
  font-weight: 700;
  color: var(--accent);
  font-size: 13px;
  padding: 14px 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hp-pricing__table tbody tr:hover:not(.group-row) {
  background: rgba(226, 74, 47, 0.04);
}
.hp-pricing__table td.price {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-weight: 500;
}
.hp-pricing__table td.price.price-highlight {
  background: rgba(226, 74, 47, 0.06);
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}
.hp-pricing__note {
  font: 400 15px/1.9 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
  margin: 24px 0 0;
  text-align: center;
}

/* ============================================================
   6. 診療の流れ
   ============================================================ */
.hp-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
  position: relative;
}
.hp-flow__step {
  position: relative;
  text-align: left;
}
.hp-flow__step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -28px;
  top: 100px;
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E24A2F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m9 18 6-6-6-6'/></svg>") center/contain no-repeat;
  z-index: 2;
}
.hp-flow__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--surface);
  margin: 0 0 24px;
  overflow: hidden;
  display: block;
  object-fit: cover;
}
.hp-flow__img--placeholder {
  background: linear-gradient(135deg, var(--accent-light) 0%, #FFFFFF 100%);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent);
  font: 700 18px/1.3 "Noto Sans JP", sans-serif;
  padding: 16px;
  text-align: center;
}
.hp-flow__img--placeholder .note {
  font: 400 11px/1.5 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
}
.hp-flow__num {
  display: inline-block;
  font: 700 15px/1 "Inter", sans-serif;
  color: #FFFFFF;
  background: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}
.hp-flow__title {
  font: 700 22px/1.4 "Noto Sans JP", sans-serif;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.hp-flow__body {
  font: 400 15px/1.9 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
  margin: 0;
}
.hp-flow__cta {
  text-align: center;
  margin: 80px 0 0;
}

/* ============================================================
   7. FAQ
   ============================================================ */
.hp-faq__category {
  font: 700 22px/1.4 "Noto Sans JP", sans-serif;
  color: var(--text-primary);
  margin: 56px 0 20px;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
}
.hp-faq__category:first-of-type { margin-top: 0; }
.hp-faq__item {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  margin: 0 0 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.hp-faq__item[open] {
  border-color: var(--accent-light);
}
.hp-faq__q {
  padding: 24px 64px 24px 64px;
  font: 700 17px/1.6 "Noto Sans JP", sans-serif;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.hp-faq__q::-webkit-details-marker { display: none; }
.hp-faq__q::before {
  content: 'Q';
  position: absolute;
  left: 28px;
  top: 24px;
  font: 700 20px/1 "Inter", sans-serif;
  color: var(--accent);
}
.hp-faq__q::after {
  content: '';
  position: absolute;
  right: 28px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E24A2F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") center/contain no-repeat;
  transition: transform 0.25s;
}
.hp-faq__item[open] .hp-faq__q::after {
  transform: translateY(-50%) rotate(180deg);
}
.hp-faq__a {
  padding: 0 28px 24px 64px;
  font: 400 16px/1.9 "Noto Sans JP", sans-serif;
  color: var(--text-secondary);
  margin: 0;
  position: relative;
}
.hp-faq__a::before {
  content: 'A';
  position: absolute;
  left: 28px;
  top: -2px;
  font: 700 20px/1 "Inter", sans-serif;
  color: var(--text-muted);
}
.hp-faq__a a {
  color: var(--accent);
  text-decoration: underline;
}
.hp-faq__a a:hover { color: var(--accent-hover); }

/* ============================================================
   レスポンシブ: タブレット（768〜1023px）
   ============================================================ */
@media (max-width: 1023px) {
  .hp-section { padding: 80px 32px; }

  .hp-heading { font-size: 36px; }
  .hp-subheading { font-size: 16px; margin-bottom: 48px; }

  .hp-hero { padding: 8px 32px 64px; }
  .hp-hero__grid {
    flex-direction: column;
    gap: 48px;
  }
  .hp-hero__badges { justify-content: flex-start; }
  .hp-hero__text {
    flex: 1 1 auto;
    text-align: center;
  }
  .hp-hero__visual {
    flex: 1 1 auto;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .hp-hero__title {
    font-size: 44px;
    text-align: center;
  }
  .hp-hero__sub {
    text-align: center;
  }
  .hp-hero__ctas {
    justify-content: center;
  }
  .hp-hero__badges {
    justify-content: center;
  }

  .hp-features { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .hp-feature { padding: 40px 28px 36px; }
  .hp-feature__title { font-size: 20px; }

  .hp-drugs { grid-template-columns: repeat(2, 1fr); }

  .hp-flow {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 56px;
    column-gap: 32px;
  }
  .hp-flow__step:not(:last-child)::after { display: none; }
}

/* ============================================================
   レスポンシブ: モバイル（〜767px）
   ============================================================ */
@media (max-width: 767px) {
  .hp-section {
    padding: 64px 20px;
  }
  .hp-heading { font-size: 28px; }
  .hp-subheading { font-size: 15px; margin-bottom: 40px; }
  .hp-eyebrow { font-size: 11px; }

  .hp-hero {
    padding: 4px 20px 48px;
  }
  .hp-hero__grid { gap: 40px; }
  .hp-hero__title { font-size: 34px; letter-spacing: -0.01em; }
  .hp-hero__sub { font-size: 16px; line-height: 1.8; }
  .hp-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .hp-hero__ctas .btn {
    width: 100%;
    min-width: 0;
    padding: 20px 24px;
    font-size: 16px;
  }
  .hp-hero__badges {
    gap: 8px;
  }
  .hp-hero__badges li {
    padding: 14px 18px;
    font-size: 15px;
    gap: 10px;
    border-radius: 14px;
  }
  .hp-hero__badges li svg {
    width: 24px;
    height: 24px;
  }

  .hp-features { grid-template-columns: 1fr; gap: 16px; }
  .hp-feature {
    padding: 40px 28px 32px;
  }
  .hp-feature__title { font-size: 20px; }
  .hp-feature__num { font-size: 32px; top: 20px; right: 28px; }

  /* 取扱薬剤: モバイルは横スクロールカルーセル */
  .hp-drugs {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 16px;
  }
  .hp-drug { scroll-snap-align: start; }
  .hp-drug__img { height: 180px; }
  .hp-drug__price { font-size: 30px; }

  .hp-pricing__wrap { padding: 20px; border-radius: var(--radius-md); }
  .hp-pricing__table { min-width: 560px; }
  .hp-pricing__table th,
  .hp-pricing__table td { padding: 14px 12px; font-size: 13px; }
  .hp-pricing__table td.price.price-highlight { font-size: 15px; }

  .hp-flow {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .hp-flow__cta { margin-top: 56px; }

  .hp-faq__category {
    font-size: 20px;
    margin: 40px 0 16px;
  }
  .hp-faq__q {
    padding: 20px 52px 20px 52px;
    font-size: 15px;
  }
  .hp-faq__q::before { left: 20px; top: 20px; font-size: 18px; }
  .hp-faq__q::after { right: 20px; }
  .hp-faq__a {
    padding: 0 20px 20px 52px;
    font-size: 15px;
  }
  .hp-faq__a::before { left: 20px; font-size: 18px; }
}