@charset "UTF-8";

:root {
  --hm-navy: #12314f;
  --hm-blue: #1f6fb8;
  --hm-sky: #eaf5ff;
  --hm-green: #25a779;
  --hm-text: #1d2939;
  --hm-muted: #667085;
  --hm-border: #d9e4ef;
  --hm-bg: #f7fbff;
  --hm-white: #ffffff;
  --hm-shadow: 0 20px 50px rgba(18, 49, 79, 0.12);
}

.hm-lp-body {
  margin: 0;
  background: var(--hm-white);
}

.hm-lp-body textarea[name="g-recaptcha-response"],
.hm-lp-body .g-recaptcha-response,
.hm-lp-body textarea[style*="width: 250px"][style*="height: 40px"] {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hm-lp {
  color: var(--hm-text);
  background: var(--hm-white);
  font-family: inherit;
  overflow: hidden;
}

.hm-lp * { box-sizing: border-box; }

.hm-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hm-lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 228, 239, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.hm-lp-header__inner,
.hm-lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.hm-lp-header__logo,
.hm-lp-footer a {
  color: var(--hm-navy);
  font-weight: 900;
  text-decoration: none;
}

.hm-lp-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.hm-lp-header__logo-img {
  display: block;
  width: 180px;
  max-width: 42vw;
  height: auto;
}

.hm-lp-header__nav,
.hm-lp-footer__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hm-lp-header__nav a {
  color: var(--hm-text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hm-lp-header__cta {
  border-radius: 999px;
  background: var(--hm-green);
  color: #fff !important;
  padding: 9px 16px;
}

.hm-lp-footer {
  border-top: 1px solid var(--hm-border);
  background: #fff;
}

.hm-lp-footer a { font-size: 13px; }

.hm-section { padding: 96px 0; }
.hm-section--soft { background: var(--hm-bg); }

.hm-section__head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.hm-section__label,
.hm-eyebrow {
  margin: 0 0 12px;
  color: var(--hm-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hm-section h2,
.hm-final h2,
.hm-thanks h1,
.hm-thanks h2 {
  margin: 0;
  color: var(--hm-navy);
  font-weight: 800;
  line-height: 1.35;
}

.hm-section h2,
.hm-final h2 { font-size: clamp(28px, 4vw, 42px); }

.hm-section__head p,
.hm-section p,
.hm-final p,
.hm-thanks p {
  color: var(--hm-muted);
  font-size: 16px;
  line-height: 1.9;
}

.hm-hero {
  position: relative;
  padding: 78px 0 76px;
  background: linear-gradient(135deg, #f4faff 0%, #ffffff 52%, #eaf5ff 100%);
}

.hm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 167, 121, 0.14), transparent 32%), radial-gradient(circle at 10% 10%, rgba(31, 111, 184, 0.12), transparent 28%);
  pointer-events: none;
}

.hm-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hm-hero__title {
  margin: 0;
  color: var(--hm-navy);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.hm-title-zero {
  font-size: 1.15em;
  margin: 0 0.05em;
}

.hm-hero__subtitle {
  display: inline-flex;
  margin: 18px 0 0;
  border-radius: 20px;
  background: #fff;
  color: var(--hm-navy) !important;
  font-size: 17px !important;
  font-weight: 900;
  line-height: 1.5 !important;
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(18, 49, 79, 0.08);
}

.hm-hero__numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 26px;
}

.hm-hero-number {
  border: 1px solid rgba(37, 167, 121, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 20px;
  box-shadow: 0 14px 32px rgba(18, 49, 79, 0.08);
}

.hm-hero-number span {
  display: block;
  color: var(--hm-muted);
  font-size: 13px;
  font-weight: 800;
}

.hm-hero-number strong {
  display: block;
  color: var(--hm-navy);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-top: 6px;
}

.hm-hero__lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: #344054;
  font-size: 16px;
  line-height: 1.85;
}

.hm-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.hm-hero__badges span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 111, 184, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--hm-navy);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.hm-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hm-cta-group--center { justify-content: center; }

.hm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.hm-nowrap { white-space: nowrap; }

.hm-button:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.hm-button--primary {
  background: var(--hm-green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 167, 121, 0.22);
}

.hm-button--secondary {
  border: 1px solid var(--hm-border);
  background: #fff;
  color: var(--hm-navy);
}

.hm-note {
  margin: 14px 0 0;
  color: var(--hm-muted);
  font-size: 13px;
  line-height: 1.7;
}

.hm-note--center,
.hm-center-note { text-align: center; }

.hm-browser-card {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(18, 49, 79, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--hm-shadow);
}

.hm-browser-card__bar {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid #eef2f6;
}

.hm-browser-card__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d9e4ef;
}

.hm-browser-card__body { padding: 30px; }

.hm-browser-card__label {
  display: inline-flex;
  border-radius: 999px;
  background: var(--hm-sky);
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 11px;
}

.hm-browser-card__title {
  margin-top: 18px;
  color: var(--hm-navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

.hm-browser-card__lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.hm-browser-card__lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #e7eef7;
}

.hm-browser-card__lines i:nth-child(2) { width: 82%; }
.hm-browser-card__lines i:nth-child(3) { width: 64%; }

.hm-browser-card__mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.hm-browser-card__mini-grid span {
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eaf5ff, #f7fbff);
}

.hm-trust-strip {
  border-top: 1px solid var(--hm-border);
  border-bottom: 1px solid var(--hm-border);
  background: #fff;
  padding: 22px 0;
}

.hm-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hm-trust-strip__grid div {
  border-left: 3px solid var(--hm-green);
  padding-left: 14px;
}

.hm-trust-strip strong,
.hm-trust-strip span { display: block; }
.hm-trust-strip strong { color: var(--hm-navy); font-size: 18px; font-weight: 900; }
.hm-trust-strip span { color: var(--hm-muted); font-size: 13px; line-height: 1.6; }

.hm-check-grid,
.hm-reason-grid,
.hm-case-grid,
.hm-price-grid,
.hm-feature-grid,
.hm-result-grid,
.hm-voice-grid {
  display: grid;
  gap: 20px;
}

.hm-check-grid { grid-template-columns: repeat(3, 1fr); }
.hm-result-grid { grid-template-columns: repeat(2, 1fr); }
.hm-voice-grid { grid-template-columns: repeat(3, 1fr); }

.hm-check-grid div,
.hm-card-list div,
.hm-feature-grid div {
  position: relative;
  border: 1px solid var(--hm-border);
  border-radius: 18px;
  background: #fff;
  padding: 18px 18px 18px 44px;
  color: var(--hm-navy);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(18, 49, 79, 0.06);
}

.hm-check-grid div::before,
.hm-card-list div::before,
.hm-feature-grid div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--hm-green);
}

.hm-feature-grid--visual div { padding: 22px; }
.hm-feature-grid--visual div::before { display: none; }

.hm-mini-icon,
.hm-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--hm-sky);
  color: var(--hm-blue);
  font-weight: 900;
}

.hm-mini-icon { width: 36px; height: 36px; margin-right: 10px; }
.hm-icon-box { width: 54px; height: 54px; margin-bottom: 16px; }

.hm-center-note {
  margin: 28px 0 0;
  color: var(--hm-navy);
  font-weight: 800;
}

.hm-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 48px;
  align-items: start;
}

.hm-card-list { display: grid; gap: 14px; }
.hm-reason-grid { grid-template-columns: repeat(4, 1fr); }

.hm-reason-grid article,
.hm-case-card,
.hm-price-card,
.hm-result-card,
.hm-voice-card {
  border: 1px solid var(--hm-border);
  border-radius: 24px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(18, 49, 79, 0.07);
}

.hm-result-card__label {
  margin: 0 0 6px;
  color: var(--hm-blue) !important;
  font-size: 13px !important;
  font-weight: 900;
}

.hm-result-card ul,
.hm-price-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.hm-result-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  background: var(--hm-bg);
  padding: 12px 14px;
}

.hm-result-card li strong {
  color: var(--hm-green);
  font-size: 22px;
  font-weight: 900;
}

.hm-result-card li span {
  color: var(--hm-navy);
  font-weight: 800;
  text-align: right;
}

.hm-voice-card p {
  margin: 0;
  color: var(--hm-text);
  font-weight: 700;
}

.hm-voice-card span {
  display: block;
  margin-top: 16px;
  color: var(--hm-blue);
  font-size: 13px;
  font-weight: 900;
}

.hm-price-list li {
  color: var(--hm-muted);
  font-size: 14px;
  font-weight: 800;
}

.hm-reason-grid h3,
.hm-result-card h3,
.hm-case-card h4,
.hm-price-card h3,
.hm-flow-list h3 {
  margin: 0 0 10px;
  color: var(--hm-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.hm-subheading { margin: 36px 0 18px; color: var(--hm-navy); font-size: 24px; font-weight: 900; }
.hm-case-grid--main { grid-template-columns: repeat(4, 1fr); }

.hm-case-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin-bottom: 18px;
  border: 1px dashed rgba(31, 111, 184, 0.3);
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf5ff, #ffffff);
  color: var(--hm-navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

.hm-case-card__thumb--image {
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-style: solid;
  background: #eef4fb;
  padding: 0;
}

.hm-case-card__thumb--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hm-case-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0;
  list-style: none;
}

.hm-case-card li {
  border-radius: 999px;
  background: var(--hm-sky);
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}

.hm-case-card a,
.hm-logo-list a { color: var(--hm-blue); font-weight: 800; text-decoration: none; }

.hm-logo-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hm-logo-list a {
  border: 1px solid var(--hm-border);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  color: var(--hm-navy);
  text-align: center;
}

.hm-section-cta { margin-top: 34px; text-align: center; }

.hm-price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.hm-price-card { position: relative; }
[data-section="price"] .hm-price-card { padding: 20px; }
[data-section="price"] .hm-price-card__target { min-height: 40px; }
.hm-price-card--featured { border-color: rgba(37, 167, 121, 0.45); box-shadow: 0 18px 46px rgba(37, 167, 121, 0.14); transform: translateY(-8px); }
.hm-price-card__badge { position: absolute; right: 20px; top: 20px; margin: 0; border-radius: 999px; background: var(--hm-green); color: #fff !important; font-size: 12px !important; font-weight: 900; line-height: 1; padding: 8px 10px; }
.hm-price-card__target { min-height: 56px; }
.hm-price-card__annual { color: var(--hm-navy) !important; font-weight: 900; line-height: 1.4 !important; }
.hm-price-card__annual span { font-size: 42px; font-weight: 900; letter-spacing: -0.04em; }
.hm-price-card__sub { margin-top: 2px; font-size: 13px !important; }

/* 価格ブロック — 薄い背景色でカード内の独立エリアとして見せる */
[data-section="price"] .hm-price-card__price-block {
  margin: 10px 0 12px;
  padding-bottom: 7px;
  border-radius: 12px;
}

/* 年払いラベル — price-block内、読める強さで小さめに */
[data-section="price"] .hm-price-card__annual-label {
  margin: 0 0 2px;
  color: var(--hm-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

/* プランスコープ — ページ数・補足文を価格の下に */
[data-section="price"] .hm-price-card__scope {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--hm-border);
}

[data-section="price"] .hm-price-card__scope strong {
  display: block;
  margin: 0 0 4px;
  color: var(--hm-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

/* ページ数補足 — scope内で余白最小 */
[data-section="price"] .hm-price-card__pages {
  margin: 0;
  color: var(--hm-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

/* 機能リスト前ラベル — 整理用の小さな見出し */
[data-section="price"] .hm-price-card__list-label {
  margin: 0 0 6px;
  color: var(--hm-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  opacity: 0.75;
}

/* 機能リストを補足情報として弱める */
[data-section="price"] .hm-price-list li {
  color: #97abbe;
  font-size: 13px;
  font-weight: 500;
}

/* 全プラン共通 — グリッド下の控えめ1行表示 */
[data-section="price"] .hm-price-common-note {
  margin: 14px auto 0;
  text-align: center;
  color: var(--hm-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
}

/* SP改行 — PCでは非表示、SPのみ改行を入れる */
.hm-price-sp-br { display: none; }

/* 注釈 */
[data-section="price"] .hm-note {
  max-width: none;
  margin: 22px 0 0;
  color: #8fa5b8;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.hm-feature-grid { grid-template-columns: repeat(3, 1fr); }

.hm-flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hm-flow-list li {
  border: 1px solid var(--hm-border);
  border-radius: 22px;
  background: #fff;
  padding: 24px;
}

.hm-flow-list span { display: inline-flex; margin-bottom: 14px; color: var(--hm-blue); font-weight: 900; }

.hm-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--hm-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 49, 79, 0.07);
}

.hm-compare-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
}

.hm-compare-table th,
.hm-compare-table td {
  border-bottom: 1px solid var(--hm-border);
  padding: 14px 12px;
  color: var(--hm-text);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.hm-compare-table th {
  background: var(--hm-bg);
  color: var(--hm-navy);
  font-weight: 900;
}

.hm-compare-table tbody th {
  text-align: left;
}

/* モコラン列ヘッダー */
.hm-compare-table thead .hm-compare-col--mocorun {
  background: rgba(37, 167, 121, 0.18);
  color: var(--hm-navy);
}
/* モコラン列ボディ */
.hm-compare-table tbody .hm-compare-col--mocorun {
  background: rgba(37, 167, 121, 0.08);
  color: var(--hm-navy);
}
/* Compare: セル縦パディングを少し詰める（バッジ+テキスト2行分） */
.hm-compare-table td { padding: 10px 12px; }

/* ---- セル内バッジ ---- */
.hm-cbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}
.hm-ctext {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--hm-muted);
}
/* ◎ — グリーン系 */
.hm-cbadge--great { background: rgba(37,167,121,0.13); color: #17896b; }
/* ○ — ブルー系 */
.hm-cbadge--ok    { background: rgba(31,111,184,0.11); color: #1f6fb8; }
/* △ — グレー系 */
.hm-cbadge--fair  { background: rgba(102,112,133,0.10); color: #667085; }
/* — — 薄いグレー */
.hm-cbadge--na    { background: rgba(217,228,239,0.50); color: #9bb0c4; }

/* モコラン列バッジ・テキスト強調 */
.hm-compare-col--mocorun .hm-cbadge--great { background: rgba(37,167,121,0.24); color: #138a62; }
.hm-compare-col--mocorun .hm-cbadge--ok    { background: rgba(37,167,121,0.15); color: #17896b; }
.hm-compare-col--mocorun .hm-cbadge--fair  { background: rgba(37,167,121,0.08); color: #4a7a68; }
.hm-compare-col--mocorun .hm-ctext { color: var(--hm-navy); font-weight: 600; }

.hm-profile { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 46px; align-items: center; }

.hm-profile__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  border: 1px dashed rgba(31, 111, 184, 0.3);
  border-radius: 28px;
  background: linear-gradient(135deg, #eaf5ff, #ffffff);
  color: var(--hm-navy);
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
  box-shadow: var(--hm-shadow);
}

.hm-profile__photo--image { overflow: hidden; border-style: solid; padding: 0; }
.hm-profile__photo--image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.hm-profile dl { display: grid; grid-template-columns: 96px 1fr; gap: 10px 18px; margin: 24px 0 0; }
.hm-profile dt { color: var(--hm-muted); font-weight: 800; }
.hm-profile dd { margin: 0; color: var(--hm-navy); font-weight: 800; }

.hm-faq-list { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.hm-faq-list details { border: 1px solid var(--hm-border); border-radius: 18px; background: #fff; padding: 18px 22px; }
.hm-faq-list summary { cursor: pointer; color: var(--hm-navy); font-weight: 900; display: flex; align-items: flex-start; gap: 10px; list-style: none; }
.hm-faq-list summary::-webkit-details-marker { display: none; }
.hm-faq-list summary::after { content: ''; display: block; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: auto; flex-shrink: 0; margin-top: 4px; transition: transform 0.2s; opacity: 0.45; }
.hm-faq-list details[open] summary::after { transform: rotate(-135deg); margin-top: 8px; }
.hm-faq-list .hm-faq-q-text { flex: 1; font-size: 16px; line-height: 1.5; }
.hm-faq-body { display: flex; align-items: flex-start; gap: 10px; margin: 10px 0 0; }
.hm-faq-body p { margin: 0; flex: 1; font-size: 14px; line-height: 1.85; color: var(--hm-muted); }
.hm-faq-q, .hm-faq-a { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; font-size: 11px; font-weight: 900; margin-top: 2px; }
.hm-faq-q { background: var(--hm-navy); color: #fff; }
.hm-faq-a { background: var(--hm-sky); color: var(--hm-blue); border: 1px solid rgba(31,111,184,0.2); }

.hm-final {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(135deg, var(--hm-navy), #1f6fb8);
  text-align: center;
}

.hm-final__illust {
  position: absolute;
  right: -24px;
  bottom: 0;
  height: 108%;
  width: auto;
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
}

.hm-final h2,
.hm-final p { color: #fff; }
.hm-final p { max-width: 720px; margin: 18px auto 0; opacity: 0.9; }
.hm-final__limit { display: inline-flex; border-radius: 999px; background: rgba(255,255,255,0.14); padding: 8px 14px; font-weight: 900; }
.hm-final .hm-cta-group { margin-top: 32px; }
.hm-button--white { background: #fff; color: var(--hm-navy); box-shadow: 0 10px 28px rgba(18,49,79,0.18); }

/* Final CTA chips */
.hm-final__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 0;
}
.hm-final__chips span {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* Final CTA scarcity note */
.hm-final__note {
  margin-top: 20px !important;
  font-size: 12px !important;
  opacity: 0.72 !important;
  line-height: 1.7 !important;
}

.hm-form-wrap { max-width: 860px; }

.hm-thanks-hero {
  min-height: 72vh;
  padding: 106px 0 84px;
  background: #fbfdff;
}
.hm-thanks-card {
  max-width: 760px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  box-shadow: none;
}
.hm-thanks h1 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.4vw, 42px);
  letter-spacing: 0;
}
.hm-thanks h1 + p {
  margin: 0;
  color: var(--hm-text);
  font-size: 16px;
  line-height: 1.9;
}
.hm-thanks-message,
.hm-thanks-next {
  margin: 32px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.hm-thanks-message {
  padding: 14px 0 14px 16px;
  border-left: 3px solid rgba(37,167,121,0.35);
}
.hm-thanks-message p,
.hm-thanks-next p { margin: 0; }
.hm-thanks-message strong { color: var(--hm-navy); }
.hm-thanks-message__note {
  margin-top: 10px !important;
  color: var(--hm-muted) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}
.hm-thanks-message__note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hm-thanks-next {
  padding-top: 28px;
  border-top: 1px solid var(--hm-border);
}
.hm-thanks-next h2 { margin-bottom: 10px; font-size: 22px; }
.hm-thanks-next .hm-button { margin-top: 18px; }
.hm-thanks-flow { margin: 38px 0; text-align: left; }
.hm-thanks-flow h2 { margin-bottom: 18px; font-size: 24px; }
.hm-thanks-flow ol {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: hm-thanks-flow;
}
.hm-thanks-flow li {
  position: relative;
  border: 0;
  border-top: 1px solid var(--hm-border);
  border-radius: 0;
  background: transparent;
  padding: 18px 0 18px 52px;
  box-shadow: none;
  counter-increment: hm-thanks-flow;
}
.hm-thanks-flow li:last-child { border-bottom: 1px solid var(--hm-border); }
.hm-thanks-flow li::before {
  content: counter(hm-thanks-flow, decimal-leading-zero);
  position: absolute;
  top: 21px;
  left: 0;
  display: block;
  width: 32px;
  color: var(--hm-green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.hm-thanks-flow strong { color: var(--hm-navy); }
.hm-thanks-flow span { display: block; margin-top: 4px; color: var(--hm-muted); }
.hm-thanks .hm-cta-group { margin-top: 26px; }
.hm-thanks .hm-button {
  border-radius: 10px;
  box-shadow: none;
}
.hm-thanks .hm-button:hover {
  transform: none;
}

@media (max-width: 1024px) {
  .hm-hero__grid,
  .hm-two-column,
  .hm-profile { grid-template-columns: 1fr; }
  .hm-browser-card { margin: 0; }
  .hm-trust-strip__grid,
  .hm-check-grid,
  .hm-reason-grid,
  .hm-case-grid--main,
  .hm-feature-grid,
  .hm-flow-list,
  .hm-voice-grid { grid-template-columns: repeat(2, 1fr); }
  [data-section="growth-support"] .hm-gs-body { grid-template-columns: 1fr; }
  [data-section="growth-support"] .hm-gs-illust { display: none; }
}

@media (max-width: 767px) {
  .hm-container { width: min(100% - 28px, 1120px); }
  .hm-lp-header__logo-img {
    width: 150px;
    max-width: 46vw;
  }
  .hm-lp-header__nav a:not(.hm-lp-header__cta) { display: none; }
  .hm-lp-header__inner { min-height: 58px; }
  .hm-section { padding: 64px 0; }
  .hm-hero { padding: 54px 0 60px; }
  .hm-hero__grid { gap: 34px; }
  .hm-hero__numbers { grid-template-columns: 1fr; }
  .hm-hero__lead { font-size: 15px; }
  .hm-hero__subtitle { border-radius: 18px; font-size: 15px !important; }
  .hm-cta-group,
  .hm-button { width: 100%; }
  .hm-trust-strip__grid,
  .hm-check-grid,
  .hm-reason-grid,
  .hm-case-grid--main,
  .hm-logo-list,
  .hm-price-grid,
  .hm-feature-grid,
  .hm-flow-list,
  .hm-result-grid,
  .hm-voice-grid { grid-template-columns: 1fr; }
  .hm-price-card--featured { transform: none; }
  .hm-price-sp-br { display: block; }
  .hm-price-pc-sep { display: none; }
  [data-section="growth-support"] .hm-gs-grid { grid-template-columns: 1fr; }
  [data-section="growth-support"] .hm-gs-illust { display: none; }
  [data-section="growth-support"] .hm-two-column { gap: 20px; }
  .hm-profile__photo { max-width: 260px; margin: 0 auto; }
  .hm-profile dl { grid-template-columns: 1fr; }
  .hm-thanks-hero { padding: 68px 0 54px; }
  .hm-thanks-card { padding: 0; }
  .hm-thanks h1 { font-size: 29px; line-height: 1.35; }
  .hm-thanks h1 + p { font-size: 14px; line-height: 1.85; }
  .hm-thanks-message { padding: 12px 0 12px 14px; }
  .hm-thanks-next { padding-top: 24px; }
  .hm-thanks-flow { margin: 28px 0; }
  .hm-thanks-flow h2,
  .hm-thanks-next h2 { font-size: 21px; }
  .hm-thanks-flow li { padding: 16px 0 16px 46px; }
  .hm-thanks-flow li::before { top: 19px; left: 0; }
}

/* ============================================================
   Section decorations & enhancements (consolidated from JS)
   ============================================================ */

.hm-section { position: relative; overflow: hidden; }
.hm-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .85; }
.hm-section > .hm-container { position: relative; z-index: 1; }

[data-section="seo-result"]::before,
[data-section="included"]::before,
[data-section="compare"]::before {
  background-image:
    radial-gradient(circle at 88% 18%, rgba(37,167,121,0.11), transparent 24%),
    radial-gradient(circle at 10% 72%, rgba(31,111,184,0.08), transparent 28%),
    url('/wp-content/themes/swell_child/assets/img/homepage-monthly/bg-grid.png');
  background-size: auto, auto, 760px auto;
  background-position: center, center, center top;
}

[data-section="compare"] .hm-note { font-size: 11px; color: #9bb0c4; margin-top: 18px; }
.hm-compare-scroll-hint { display: none; }
.hm-compare-sp-br { display: none; }

[data-section="problem"]::before,
[data-section="voice"]::before {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(247,251,255,.78)),
    url('/wp-content/themes/swell_child/assets/img/homepage-monthly/bg-offwhite.png');
  background-size: cover;
}

[data-section="solution"]::before,
[data-section="growth-support"]::before {
  background-image:
    radial-gradient(circle at 18% 22%, rgba(31,111,184,.1), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(37,167,121,.12), transparent 28%),
    url('/wp-content/themes/swell_child/assets/img/homepage-monthly/bg-wireframe.png');
  background-size: auto, auto, cover;
}

[data-section="reason"]::before,
[data-section="flow"]::before {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,251,255,.78)),
    url('/wp-content/themes/swell_child/assets/img/homepage-monthly/bg-gradation-design.png');
  background-size: cover;
}

/* Section label line decoration */
.hm-section__label { display: inline-flex; align-items: center; gap: 8px; }
.hm-section__label::before { content: ''; width: 26px; height: 2px; border-radius: 999px; background: currentColor; opacity: .45; }

/* Section head spacing */
.hm-section__head { margin-bottom: 46px; }
.hm-section__head h2 { letter-spacing: -0.035em; }
.hm-section:not([data-section="fv"]):not([data-section="seo-result"]) .hm-section__head h2 { margin-bottom: 22px; }
.hm-section:not([data-section="fv"]):not([data-section="seo-result"]) .hm-section__head p:not(.hm-section__label) { margin-top: 0; line-height: 1.95; }

/* Asset icons */
.hm-asset-icon { display: inline-block; width: 22px; height: 22px; background: currentColor; -webkit-mask: var(--hm-icon-url) center / contain no-repeat; mask: var(--hm-icon-url) center / contain no-repeat; }

/* Device showcase */
.hm-device-showcase { position: relative; min-height: 226px; padding: 18px 46px 18px 0; }
.hm-device-showcase__desktop { position: relative; overflow: hidden; height: 206px; border: 1px solid rgba(217,228,239,.95); border-radius: 22px; background: #fff; box-shadow: 0 20px 44px rgba(18,49,79,.13); }
.hm-device-showcase__bar { display: flex; gap: 6px; padding: 12px 14px; border-bottom: 1px solid rgba(217,228,239,.8); background: rgba(247,251,255,.92); }
.hm-device-showcase__bar span { width: 8px; height: 8px; border-radius: 999px; background: #d8e3ee; }
.hm-device-showcase__desktop img { width: 100%; height: calc(100% - 33px); object-fit: cover; object-position: top center; display: block; }
.hm-device-showcase__mobile { position: absolute; right: 0; bottom: 0; width: 90px; height: 164px; overflow: hidden; border: 5px solid #fff; border-radius: 20px; background: #fff; box-shadow: 0 16px 38px rgba(18,49,79,.22); }
.hm-device-showcase__mobile img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* ============================================================
   Result section
   ============================================================ */

[data-section="seo-result"] .hm-section__head p { max-width: 900px; }
[data-section="seo-result"] .hm-result-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
[data-section="seo-result"] .hm-result-card { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 18px; padding: 22px; border-radius: 30px; background: rgba(255,255,255,.92); box-shadow: 0 22px 56px rgba(18,49,79,.1); }
[data-section="seo-result"] .hm-result-card::before { content: ''; position: absolute; right: -70px; top: -70px; width: 190px; height: 190px; border-radius: 50%; background: rgba(37,167,121,.08); }
.hm-result-card__visual { position: relative; z-index: 1; order: 1; }
.hm-result-card__body { position: relative; z-index: 2; order: 2; }
[data-section="seo-result"] .hm-device-showcase { min-height: 168px; padding: 0 34px 0 0; }
[data-section="seo-result"] .hm-device-showcase__desktop { height: 158px; border-radius: 18px; }
[data-section="seo-result"] .hm-device-showcase__mobile { width: 68px; height: 124px; border-width: 4px; border-radius: 16px; }
.hm-result-card__industry { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; background: rgba(37,167,121,.1); color: var(--hm-green); font-size: 13px; font-weight: 900; padding: 7px 11px; }
[data-section="seo-result"] .hm-result-card h3 { margin: 14px 0 0; font-size: clamp(20px,1.9vw,24px); line-height: 1.36; }
.hm-result-card__company { margin: 8px 0 0 !important; color: var(--hm-muted) !important; font-size: 13px !important; font-weight: 800; }
[data-section="seo-result"] .hm-result-card ul { margin-top: 18px; }
[data-section="seo-result"] .hm-result-card li { background: linear-gradient(90deg, rgba(234,245,255,.95), rgba(255,255,255,.96)); }
[data-section="seo-result"] .hm-result-card li strong { font-size: 23px; }

/* ============================================================
   Problem section — 2-column / diagnostic panel
   ============================================================ */

[data-section="problem"] { padding: 76px 0; }

.hm-problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 52px;
  row-gap: 32px;
  align-items: start;
}

.hm-problem-header { grid-column: 1 / -1; }

.hm-problem-header .hm-section__label { margin-bottom: 14px; }

[data-section="problem"] .hm-problem-header h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.38;
  letter-spacing: -0.03em;
}

.hm-problem-lead {
  margin: 0;
  color: var(--hm-muted);
  font-size: 16px;
  line-height: 2;
}

.hm-problem-illust-wrap {
  display: flex;
  justify-content: center;
}

/* Illustration — fills right column on PC */
.hm-problem-illust {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  user-select: none;
}

.hm-problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.hm-problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--hm-border);
  color: var(--hm-navy);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.65;
  box-shadow: 0 6px 16px rgba(18,49,79,.05);
}

.hm-problem-list li::before {
  content: '';
  flex: 0 0 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(37,167,121,.12);
  border: 2px solid rgba(37,167,121,.35);
}

.hm-problem-bridge {
  grid-column: 1 / -1;
  margin-top: 0;
  max-width: 720px;
  padding: 22px 28px;
  border-left: 3px solid var(--hm-green);
  background: linear-gradient(135deg, rgba(37,167,121,.06), rgba(31,111,184,.03));
  border-radius: 0 16px 16px 0;
}

/* Bridge: small green label */
.hm-bridge-label {
  margin: 0 0 8px !important;
  color: var(--hm-green) !important;
  font-size: 13px !important;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1 !important;
}

/* Bridge: navy bold body */
.hm-bridge-body {
  margin: 0 !important;
  color: var(--hm-navy) !important;
  font-size: 19px !important;
  font-weight: 900;
  line-height: 1.8 !important;
}

/* Bridge: green accent on key phrase */
.hm-bridge-accent {
  color: var(--hm-green);
}

/* SP-only line break (CSS-controlled complement to JS-driven hm-pc-br) */
.hm-sp-br { display: none; }

/* ============================================================
   Solution section
   ============================================================ */

[data-section="solution"] .hm-two-column,
[data-section="growth-support"] .hm-two-column { align-items: center; gap: 64px; }

[data-section="solution"] h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 20px;
}

[data-section="solution"] .hm-card-list,
[data-section="growth-support"] .hm-card-list {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(217,228,239,.9);
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(18,49,79,.08);
}

[data-section="solution"] .hm-card-list::before {
  content: '作る前に整理する4つのこと';
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--hm-sky);
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 11px;
}

[data-section="solution"] .hm-card-list div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: auto;
  padding: 14px 16px;
  box-shadow: none;
  align-items: flex-start;
}

[data-section="solution"] .hm-card-list div::before { display: none; }

/* Solution card: number prefix */
.hm-sol-num {
  display: inline-block;
  margin-right: 5px;
  color: var(--hm-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  vertical-align: middle;
}

/* Solution card: description line */
.hm-sol-desc {
  display: block;
  color: var(--hm-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

/* ============================================================
   Reason section — primary 3 + secondary 4
   ============================================================ */

/* Reason section: tighten head margin to offset new lead text */
[data-section="reason"] .hm-section__head { margin-bottom: 36px; }

.hm-reason-primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.hm-reason-primary article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37,167,121,.26);
  border-radius: 24px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 46px rgba(37,167,121,.1);
}

.hm-reason-primary article::after {
  content: '';
  position: absolute;
  right: -36px;
  top: -36px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(31,111,184,.07);
}

.hm-reason-primary .hm-icon-box {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: #eef8f4;
  color: var(--hm-green);
  font-size: 0;
  margin-bottom: 16px;
}

.hm-reason-primary .hm-icon-box .hm-asset-icon { width: 23px; height: 23px; }

.hm-reason-primary h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--hm-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.hm-reason-primary p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.hm-reason-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hm-reason-secondary > div {
  border: 1px solid var(--hm-border);
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(18,49,79,.05);
}

.hm-reason-secondary .hm-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--hm-sky);
  color: var(--hm-blue);
  font-size: 0;
  margin-bottom: 12px;
}

.hm-reason-secondary .hm-icon-box .hm-asset-icon { width: 20px; height: 20px; }

.hm-reason-secondary h3 {
  margin: 0 0 8px;
  color: var(--hm-navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.hm-reason-secondary p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

/* ============================================================
   Included section — category checklist
   ============================================================ */

.hm-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hm-included-cat {
  border: 1px solid var(--hm-border);
  border-top: 3px solid var(--hm-green);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(18,49,79,.06);
}

.hm-included-cat__title {
  display: block;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hm-border);
  color: var(--hm-navy);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hm-included-cat ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hm-included-cat li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--hm-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.hm-included-cat li::before {
  content: '✓';
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: rgba(37,167,121,.15);
  color: var(--hm-green);
  font-size: 9px;
  font-weight: 900;
}

/* ============================================================
   Mini CTA (Included直後)
   ============================================================ */

.hm-mini-cta { margin-top: 40px; }

.hm-mini-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 28px;
  border: 1px solid rgba(37,167,121,0.28);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(37,167,121,.09);
}

.hm-mini-cta__label {
  margin: 0 0 6px;
  color: var(--hm-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hm-mini-cta__body {
  margin: 0;
  color: var(--hm-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

/* ============================================================
   Mid CTA (Price直後)
   ============================================================ */

.hm-mid-cta {
  margin-top: 40px;
}

.hm-mid-cta__card {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 36px;
  border: 1px solid rgba(37,167,121,0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #f5fdf9);
  box-shadow: 0 8px 28px rgba(37,167,121,0.10);
  text-align: center;
}

.hm-mid-cta__label {
  margin: 0 0 10px;
  color: var(--hm-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hm-mid-cta__body {
  margin: 0 0 22px;
  color: var(--hm-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

/* ============================================================
   CTA Band (Included後 / Works後 --sm、Price後 --md)
   ============================================================ */

.hm-cta-band {
  width: 100%;
  padding: 16px 0;
  background: #edf9f3;
}

.hm-cta-band--md {
  padding: 18px 0;
  background: linear-gradient(135deg, #edf9f3, #e8f3ff);
}

/* 内側ボックス：テキストとボタンを左右に並べる */
.hm-cta-band__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 24px 36px;
  background: #fff;
  border: 1px solid rgba(37,167,121,0.20);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(37,167,121,0.08);
}

.hm-cta-band__left {
  flex: 1;
  min-width: 0;
}

/* 見出し */
.hm-cta-band__title {
  margin: 0 0 8px;
  color: var(--hm-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.hm-cta-band--md .hm-cta-band__title {
  font-size: 21px;
}

/* 本文 */
.hm-cta-band__body {
  margin: 0 0 12px;
  color: var(--hm-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

/* 確認できることチップ */
.hm-cta-band__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-cta-band__checks li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(37,167,121,0.10);
  color: var(--hm-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hm-cta-band__checks li::before {
  content: "✓";
  font-size: 10px;
}

.hm-cta-band .hm-button {
  flex-shrink: 0;
}

/* ============================================================
   SP Sticky Bottom CTA Bar — PC: 完全非表示、SP: JS制御
   ============================================================ */

.hm-sp-cta-bar { display: none; } /* PC は完全非表示 */

/* ============================================================
   Works section — auto-scroll marquee
   ============================================================ */

@keyframes hm-works-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Outer: hides overflow, fades edges */
.hm-works-slider {
  overflow: hidden;
  padding: 4px 0 10px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* Inner: flex row, width determined by cards × 2 for seamless loop */
.hm-works-slider__track {
  display: flex;
  width: max-content;
  animation: hm-works-scroll 60s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.hm-works-slider:hover .hm-works-slider__track {
  animation-play-state: paused;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hm-works-slider__track { animation: none; }
}

/* Card: fixed 390px + 20px right margin for precise -50% loop math */
/* One set = 11 × (390 + 20) = 4510px → total 9020px → -50% = -4510px ✓ */
.hm-works-card {
  flex: 0 0 390px;
  width: 390px;
  margin-right: 20px;
  border: 1px solid rgba(217,228,239,.3);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(18,49,79,.03);
}

/* Screenshot area */
.hm-works-card__visual {
  padding: 12px 12px 0;
  background: var(--hm-bg);
}

/* Device showcase sizing for 390px cards — desktop as hero image */
[data-section="case"] .hm-device-showcase {
  min-height: 216px;
  padding: 0 62px 0 0;
}

[data-section="case"] .hm-device-showcase__desktop {
  height: 200px;
  border-radius: 12px;
}

[data-section="case"] .hm-device-showcase__mobile {
  width: 60px;
  height: 122px;
  border-width: 3px;
  border-radius: 12px;
}

/* Extra-thin browser bar — scoped to Works cards only (Result/FV 不影響) */
/* bar height: 4(top) + 4(dot) + 4(bottom) + 1(border) = 13px */
[data-section="case"] .hm-device-showcase__bar {
  padding: 4px 8px;
  gap: 3px;
}

[data-section="case"] .hm-device-showcase__bar span {
  width: 4px;
  height: 4px;
}

[data-section="case"] .hm-device-showcase__desktop img {
  height: calc(100% - 13px);
}

/* Card body */
.hm-works-card__body {
  padding: 13px 16px 15px;
}

/* 業種: タイトル役 — ネイビー・極太・18px */
.hm-works-card__meta {
  margin: 0 0 8px;
  color: var(--hm-navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* 制作内容: 説明役 — 業種名より明確に一段下 (--hm-muted #667085 より薄め) */
.hm-works-card__desc {
  margin: 0 0 10px;
  color: #8a9bb0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

/* タグ行 */
.hm-works-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.hm-works-card__tag {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(234,245,255,.6);
  color: var(--hm-blue);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.7;
}

/* 767px SP: switch to manual horizontal scroll, show originals only */
@media (max-width: 767px) {
  .hm-works-slider {
    overflow-x: auto;
    padding: 4px 16px 14px;
    scroll-snap-type: x mandatory;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
  }
  .hm-works-slider::-webkit-scrollbar { display: none; }
  .hm-works-slider__track { animation: none; }
  /* Hide duplicate cards on SP */
  .hm-works-card[aria-hidden="true"] { display: none; }
  /* vw単位で viewport 基準のカード幅に — PCの390px を継承しない */
  .hm-works-card {
    flex: 0 0 88vw;
    width: 88vw;
    max-width: 330px;
    scroll-snap-align: start;
  }
  /* SP画像: 150px〜170px 目安 */
  [data-section="case"] .hm-device-showcase { min-height: 162px; padding: 0 50px 0 0; }
  [data-section="case"] .hm-device-showcase__desktop { height: 152px; border-radius: 12px; }
  [data-section="case"] .hm-device-showcase__mobile { width: 48px; height: 100px; border-width: 3px; border-radius: 12px; }
}

/* ============================================================
   Voice section
   ============================================================ */

[data-section="voice"] .hm-voice-grid { grid-template-columns: repeat(3,1fr); }

[data-section="voice"] .hm-voice-card {
  position: relative;
  padding-top: 44px;
  background: rgba(255,255,255,.94);
  display: flex;
  flex-direction: column;
}

/* 引用符装飾 — 控えめに */
[data-section="voice"] .hm-voice-card::before {
  content: '\201C';
  position: absolute;
  left: 22px;
  top: 12px;
  color: rgba(37,167,121,.18);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

/* 見出し風の一言: ネイビー・やや太く・本文より上位 */
[data-section="voice"] .hm-voice-card__quote {
  margin: 0 0 10px;
  color: var(--hm-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

@media (min-width: 768px) {
  [data-section="voice"] .hm-voice-card__quote { font-size: 13px; }
}

/* コメント本文: グレー・軽め・行間ゆったり */
[data-section="voice"] .hm-voice-card__text {
  margin: 0 0 14px;
  color: #8a9bb0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  flex: 1;
}

/* 業種名: 控えめ・信頼要素として視認できる程度 */
[data-section="voice"] .hm-voice-card span {
  margin-top: 12px;
  color: var(--hm-muted);
  font-size: 12px;
  font-weight: 700;
  padding-top: 12px;
  border-top: 1px solid var(--hm-border);
}

/* 注釈 — [data-section="voice"] でスコープし .hm-section p (0-0-1-1) に確実に勝つ */
[data-section="voice"] .hm-voice-note {
  margin: 14px 0 0;
  text-align: center;
  color: #9bb0c4;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}

/* ============================================================
   Growth Support section
   ============================================================ */

/* 上段 — 見出しブロック下余白 */
[data-section="growth-support"] .hm-section__head {
  margin-bottom: 36px;
}

/* 上段リード文 — 読みやすい幅で中央揃え */
[data-section="growth-support"] .hm-section__head p:not(.hm-section__label) {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* 下段 — カード左・イラスト右の2カラム（中央寄せ） */
[data-section="growth-support"] .hm-gs-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

/* 右 — イラストコンテナ */
[data-section="growth-support"] .hm-gs-body__illust {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* イラスト — 右カラムに自然に収まるサイズ */
[data-section="growth-support"] .hm-gs-illust {
  display: block;
  width: 100%;
  max-width: 340px;
  opacity: 0.88;
}

/* 相談メニューラベル */
[data-section="growth-support"] .hm-gs-label {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--hm-sky);
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

/* 2×2 グリッド */
[data-section="growth-support"] .hm-gs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* カード */
[data-section="growth-support"] .hm-gs-card {
  padding: 18px;
  border: 1px solid rgba(217, 228, 239, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(18, 49, 79, 0.05);
}

/* カードタイトル */
[data-section="growth-support"] .hm-gs-card__title {
  margin: 0 0 6px;
  color: var(--hm-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

/* カード説明 */
[data-section="growth-support"] .hm-gs-card__desc {
  margin: 0;
  color: var(--hm-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

/* ============================================================
   Flow section — timeline
   ============================================================ */

[data-section="flow"] .hm-flow-list { position: relative; grid-template-columns: repeat(3,1fr); gap: 12px; }
[data-section="flow"] .hm-flow-list::before { display: none; }
[data-section="flow"] .hm-flow-list li { position: relative; padding: 20px 16px; border-radius: 22px; background: rgba(255,255,255,.94); }
[data-section="flow"] .hm-flow-list span { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin-bottom: 12px; border-radius: 999px; background: var(--hm-blue); color: #fff; }
[data-section="flow"] .hm-flow-list h3 { font-size: 17px; }
[data-section="flow"] .hm-flow-list p { font-size: 13px; line-height: 1.75; color: #4a5568; }

/* ============================================================
   Profile section
   ============================================================ */

[data-section="profile"] .hm-profile { padding: 36px; border: 1px solid var(--hm-border); border-radius: 34px; background: linear-gradient(135deg,#fff,#f7fbff); box-shadow: 0 18px 46px rgba(18,49,79,.08); }
[data-section="profile"] .hm-profile__photo { overflow: hidden; border-radius: 28px; background: linear-gradient(135deg,#eaf5ff,#eefaf5); }
[data-section="profile"] .hm-profile__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
[data-section="profile"] h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 20px; }

/* ============================================================
   Responsive (redesigned sections)
   ============================================================ */

@media (max-width: 1100px) {
  [data-section="seo-result"] .hm-result-grid { grid-template-columns: 1fr; }
  [data-section="seo-result"] .hm-result-card { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); }
}

@media (max-width: 1024px) {
  .hm-problem-layout { grid-template-columns: 1fr; gap: 32px; }
  .hm-reason-primary { grid-template-columns: 1fr; }
  .hm-reason-secondary { grid-template-columns: repeat(2, 1fr); }
  .hm-included-grid { grid-template-columns: repeat(2, 1fr); }
  [data-section="voice"] .hm-voice-grid { grid-template-columns: repeat(2,1fr); }
  [data-section="case"] .hm-case-grid--main { grid-template-columns: 1fr; }
  /* flow: base already repeat(3,1fr); no override needed */
}

@media (max-width: 767px) {
  .hm-section__label::before { width: 18px; }
  [data-section="seo-result"] .hm-result-card { display: flex; }
  .hm-problem-layout { grid-template-columns: 1fr; gap: 22px; }
  .hm-problem-illust-wrap { display: none; }
  .hm-problem-illust { display: none; }
  .hm-problem-list li { font-size: 14px; padding: 14px 16px; align-items: center; }
  .hm-problem-list li::before { margin-top: 0; }
  .hm-problem-bridge { margin-top: 28px; padding: 18px 22px; max-width: none; }
  .hm-sp-br { display: block; }
  /* Reason primary: icon-left / text-right on SP */
  .hm-reason-primary { grid-template-columns: 1fr; }
  .hm-reason-primary article { display: grid; grid-template-columns: 38px 1fr; column-gap: 14px; padding: 18px; align-items: start; }
  .hm-reason-primary .hm-icon-box { grid-column: 1; grid-row: 1 / 3; width: 38px; height: 38px; border-radius: 14px; margin-bottom: 0; align-self: start; }
  .hm-reason-primary h3 { grid-column: 2; grid-row: 1; font-size: 17px; margin-bottom: 5px; }
  .hm-reason-primary p { grid-column: 2; grid-row: 2; font-size: 14px; line-height: 1.65; }
  /* Reason secondary: icon-left / text-right on SP */
  .hm-reason-secondary { grid-template-columns: 1fr; }
  .hm-reason-secondary > div { display: grid; grid-template-columns: 30px 1fr; column-gap: 12px; padding: 14px 16px; border-radius: 14px; align-items: start; }
  .hm-reason-secondary .hm-icon-box { grid-column: 1; grid-row: 1 / 3; width: 30px; height: 30px; border-radius: 10px; margin-bottom: 0; align-self: start; }
  .hm-reason-secondary h3 { grid-column: 2; grid-row: 1; font-size: 14px; margin-bottom: 4px; }
  .hm-reason-secondary p { grid-column: 2; grid-row: 2; font-size: 12px; line-height: 1.6; }
  .hm-included-grid { grid-template-columns: 1fr; gap: 14px; }
  .hm-mini-cta { margin-top: 28px; }
  .hm-mini-cta__card { flex-direction: column; text-align: center; padding: 18px 20px; gap: 16px; }
  .hm-mini-cta__card .hm-button { width: 100%; }
  .hm-mid-cta { margin-top: 28px; }
  .hm-mid-cta__card { padding: 24px 20px; border-radius: 20px; }
  .hm-mid-cta__body { font-size: 15px; margin-bottom: 18px; }
  .hm-mid-cta__card .hm-button { width: 100%; }
  .hm-cta-band { padding: 14px 0; }
  .hm-cta-band--md { padding: 16px 0; }
  .hm-cta-band__box { flex-direction: column; align-items: stretch; text-align: center; padding: 22px 20px; gap: 18px; border-radius: 16px; }
  .hm-cta-band__title { font-size: 17px; }
  .hm-cta-band--md .hm-cta-band__title { font-size: 18px; }
  .hm-cta-band__body { font-size: 13px; }
  .hm-cta-band__checks { justify-content: center; }
  .hm-cta-band__checks li { white-space: normal; }
  .hm-cta-band .hm-button { width: 100%; }
  .hm-nowrap { white-space: normal; }
  .hm-final__illust { display: none; }
  .hm-final { padding: 52px 0; }
  [data-section="voice"] .hm-voice-grid { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  [data-section="voice"] .hm-voice-card { flex: 0 0 84%; scroll-snap-align: start; }
  [data-section="case"] .hm-case-grid--main { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  [data-section="case"] .hm-case-card { flex: 0 0 88%; display: block; scroll-snap-align: start; }
  [data-section="case"] .hm-case-card__thumb { margin-bottom: 18px; }
  .hm-device-showcase { min-height: 210px; padding-right: 42px; }
  .hm-device-showcase__desktop { height: 190px; }
  .hm-device-showcase__mobile { width: 78px; height: 142px; }
  [data-section="seo-result"] .hm-device-showcase { min-height: 210px; padding-right: 42px; }
  [data-section="seo-result"] .hm-device-showcase__desktop { height: 190px; }
  [data-section="seo-result"] .hm-device-showcase__mobile { width: 78px; height: 142px; }
  [data-section="flow"] .hm-flow-list { grid-template-columns: 1fr; }
  [data-section="flow"] .hm-flow-list li { display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; }
  [data-section="flow"] .hm-flow-list span { grid-row: 1 / span 2; }
  [data-section="profile"] .hm-profile { padding: 22px; border-radius: 26px; }
  [data-section="profile"] .hm-profile__photo { aspect-ratio: 16 / 11; max-width: 100%; }
  [data-section="profile"] .hm-profile__photo img { object-position: center top; }
  [data-section="profile"] h2 { margin-bottom: 16px; }
  [data-section="profile"] .hm-profile dl { gap: 7px 0; margin-top: 18px; }
  /* Growth Support SP — ベースルール(~line1558)より後で確実に上書き */
  /* 下段wrapperを1カラムに変更（grid-template-columnsを明示上書き） */
  [data-section="growth-support"] .hm-gs-body {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  /* イラストを先頭に（DOM順はカード→イラストのため order で逆転） */
  [data-section="growth-support"] .hm-gs-body__illust {
    order: 1;
    display: flex;
    justify-content: center;
    overflow: visible;
    max-height: none;
    margin: 6px 0 10px;
  }
  [data-section="growth-support"] .hm-gs-body__cards { order: 2; }
  /* 相談カードを1列に */
  [data-section="growth-support"] .hm-gs-grid { grid-template-columns: 1fr; width: 100%; }
  [data-section="growth-support"] .hm-gs-card { width: 100%; min-width: 0; }
  /* イラスト — 自然な中央表示 */
  [data-section="growth-support"] .hm-gs-illust {
    display: block;
    width: 240px;
    max-width: 72vw;
    height: auto;
    margin: 0 auto;
    transform: none;
  }
  /* ラベル上余白 */
  [data-section="growth-support"] .hm-gs-label { margin-top: 10px; }

  /* Compare: SP */
  .hm-compare-scroll-hint {
    display: block;
    margin: -6px 0 10px;
    color: #8fa5b8;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.6;
  }
  [data-section="compare"] .hm-compare-table { min-width: 820px; }
  [data-section="compare"] .hm-compare-table th,
  [data-section="compare"] .hm-compare-table td { font-size: 12px; padding: 7px 8px; }
  /* SP列幅: nth-childで明示 */
  [data-section="compare"] .hm-compare-table th:nth-child(1),
  [data-section="compare"] .hm-compare-table td:nth-child(1) { width: 122px; }
  [data-section="compare"] .hm-compare-table th:nth-child(2),
  [data-section="compare"] .hm-compare-table td:nth-child(2) { width: 138px; }
  [data-section="compare"] .hm-compare-table th:nth-child(n+3),
  [data-section="compare"] .hm-compare-table td:nth-child(n+3) { width: 133px; }
  /* 項目列: 折り返し防止 */
  [data-section="compare"] .hm-compare-table tbody th { font-size: 13px; line-height: 1.45; white-space: nowrap; }
  /* 項目列のみ sticky（モコラン列は通常スクロール） */
  [data-section="compare"] .hm-compare-table tbody th,
  [data-section="compare"] .hm-compare-table thead th:nth-child(1) {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #f7fbff;
    box-shadow: 3px 0 6px rgba(18,49,79,0.09);
  }
  [data-section="compare"] .hm-compare-table thead th:nth-child(1) { z-index: 3; }
  .hm-compare-sp-br { display: block; }
  .hm-compare-pc-dot { display: none; }
  [data-section="compare"] .hm-note { font-size: 11px; }
  [data-section="compare"] .hm-cbadge { width: 24px; height: 24px; font-size: 13px; }
  [data-section="compare"] .hm-ctext { font-size: 10px; margin-top: 3px; }
  /* FAQ: SP */
  [data-section="faq"] .hm-faq-list details { padding: 14px 16px; }
  [data-section="faq"] .hm-faq-list .hm-faq-q-text { font-size: 15px; }
  [data-section="faq"] .hm-faq-body { margin-top: 8px; }
  [data-section="faq"] .hm-faq-body p { font-size: 13px; line-height: 1.8; }
  /* SP sticky bottom CTA bar */
  /* SP固定バー分の本文被り防止余白 */
  .hm-sp-cta-active .hm-lp { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .hm-sp-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 -2px 14px rgba(18,49,79,0.10);
    padding: 8px 20px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform 0.3s ease;
    pointer-events: none;
  }
  .hm-sp-cta-bar--visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  .hm-sp-cta-bar__inner {
    max-width: 460px;
    margin: 0 auto;
  }
  .hm-sp-cta-bar__btn {
    display: block;
    width: 100%;
    min-height: 44px !important;
    font-size: 15px;
    text-align: center;
  }
}

/* ============================================================
   Migrated from homepage-monthly-typography.js
   ============================================================ */

.hm-section__head {
  max-width: 920px;
}

.hm-section__head h2,
.hm-two-column h2,
.hm-profile h2,
.hm-final h2 {
  word-break: auto-phrase;
  line-break: strict;
  text-wrap: balance;
}

.hm-section__head h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hm-section__head p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  word-break: auto-phrase;
  line-break: strict;
  text-wrap: pretty;
}

.hm-two-column h2 {
  max-width: 680px;
}

.hm-two-column p {
  max-width: 660px;
  word-break: auto-phrase;
  line-break: strict;
  text-wrap: pretty;
}

.hm-profile h2 {
  max-width: 760px;
}

.hm-profile p,
.hm-final p {
  word-break: auto-phrase;
  line-break: strict;
  text-wrap: pretty;
}

[data-section="seo-result"] .hm-section__head,
[data-section="problem"] .hm-section__head,
[data-section="compare"] .hm-section__head {
  max-width: 960px;
}

[data-section="seo-result"] .hm-section__head h2,
[data-section="problem"] .hm-section__head h2,
[data-section="compare"] .hm-section__head h2 {
  max-width: 960px;
}

[data-section="seo-result"] .hm-section__head p,
[data-section="problem"] .hm-section__head p,
[data-section="compare"] .hm-section__head p,
[data-section="included"] .hm-section__head p,
[data-section="case"] .hm-section__head p,
[data-section="voice"] .hm-section__head p,
[data-section="form"] .hm-section__head p {
  max-width: 860px;
}

@supports not (word-break: auto-phrase) {
  .hm-section__head h2,
  .hm-two-column h2,
  .hm-profile h2,
  .hm-final h2,
  .hm-section__head p,
  .hm-two-column p,
  .hm-profile p,
  .hm-final p {
    word-break: normal;
    overflow-wrap: normal;
  }
}

@media (max-width: 1024px) {
  .hm-section__head,
  [data-section="seo-result"] .hm-section__head,
  [data-section="problem"] .hm-section__head,
  [data-section="compare"] .hm-section__head {
    max-width: 820px;
  }
}

@media (max-width: 767px) {
  .hm-section__head {
    max-width: none;
    margin-bottom: 34px;
    text-align: left;
  }

  .hm-section__head h2,
  .hm-two-column h2,
  .hm-profile h2,
  .hm-final h2 {
    text-wrap: balance;
    line-height: 1.36;
  }

  .hm-section__head p,
  .hm-two-column p,
  .hm-profile p,
  .hm-final p {
    max-width: none;
    text-wrap: pretty;
    line-height: 1.86;
  }

  [data-section="seo-result"] .hm-section__head h2,
  [data-section="problem"] .hm-section__head h2,
  [data-section="compare"] .hm-section__head h2 {
    max-width: 100%;
  }
}

/* ============================================================
   Migrated from homepage-monthly-mobile.js injectMobileStyles()
   ============================================================ */

.grecaptcha-badge {
  visibility: hidden !important;
  pointer-events: none !important;
}

.hm-recaptcha-note {
  margin-top: 14px;
  color: var(--hm-muted);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.hm-recaptcha-note a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .hm-lp-header__nav a:not(.hm-lp-header__cta) {
    display: none !important;
  }

  .hm-hero {
    padding: 84px 0 44px !important;
  }

  .hm-hero__grid {
    gap: 30px !important;
  }

  .hm-hero .hm-eyebrow {
    margin-bottom: 10px !important;
    font-size: 12px !important;
    letter-spacing: 0.04em !important;
  }

  .hm-hero__title {
    font-size: clamp(32px, 9.4vw, 40px) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.034em !important;
  }

  .hm-hero__subtitle {
    margin-top: 15px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  .hm-hero__subtitle .hm-pc-br {
    display: block !important;
  }

  .hm-hero__numbers {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-width: none !important;
    margin-top: 21px !important;
  }

  .hm-hero-number {
    min-width: 0 !important;
    border-left-width: 3px !important;
    padding: 4px 0 4px 11px !important;
  }

  .hm-hero-number span {
    font-size: 12px !important;
  }

  .hm-hero-number strong {
    gap: 2px !important;
  }

  .hm-hero-number .hm-num {
    font-size: clamp(34px, 10.4vw, 42px) !important;
    letter-spacing: -0.075em !important;
  }

  .hm-hero-number:first-child .hm-num {
    font-size: clamp(40px, 12vw, 48px) !important;
  }

  .hm-hero-number .hm-unit {
    font-size: 15px !important;
    letter-spacing: -0.04em !important;
  }

  .hm-hero__badges {
    flex-wrap: nowrap !important;
    gap: 6px !important;
    margin-top: 17px !important;
  }

  .hm-hero__badges span {
    flex: 0 1 auto !important;
    white-space: nowrap !important;
    padding: 6px 7px !important;
    font-size: 11.5px !important;
    border-radius: 10px !important;
  }

  .hm-hero__badges span::before {
    width: 15px !important;
    height: 15px !important;
    margin-right: 5px !important;
    font-size: 9px !important;
  }

  .hm-cta-group {
    margin-top: 19px !important;
    gap: 10px !important;
  }

  .hm-button {
    min-height: 52px !important;
    padding: 13px 20px !important;
  }

  .hm-note {
    margin-top: 11px !important;
    font-size: 12px !important;
    line-height: 1.7 !important;
  }

  .hm-blueprint-board {
    max-width: none !important;
    border-radius: 28px !important;
  }

  .hm-blueprint-board__bar {
    padding: 14px 18px !important;
  }

  .hm-blueprint-board__body {
    padding: 20px !important;
  }

  .hm-blueprint-board__label {
    font-size: 11px !important;
    padding: 6px 10px !important;
  }

  .hm-blueprint-board__title {
    margin: 14px 0 16px !important;
    font-size: 21px !important;
    line-height: 1.38 !important;
  }

  .hm-blueprint-canvas {
    grid-template-columns: 0.92fr 1.08fr !important;
    gap: 10px !important;
  }

  .hm-site-wire {
    min-height: 178px !important;
    padding: 11px !important;
    border-radius: 18px !important;
  }

  .hm-site-wire__hero {
    border-radius: 14px !important;
    padding: 12px !important;
  }

  .hm-site-wire__label {
    width: 54px !important;
    height: 7px !important;
  }

  .hm-site-wire__title {
    height: 10px !important;
    margin-top: 9px !important;
  }

  .hm-site-wire__text {
    gap: 5px !important;
    margin-top: 9px !important;
  }

  .hm-site-wire__text i {
    height: 6px !important;
  }

  .hm-site-wire__cards {
    gap: 7px !important;
    margin-top: 10px !important;
  }

  .hm-site-wire__cards span {
    height: 34px !important;
    border-radius: 10px !important;
  }

  .hm-site-wire__button {
    width: 92px !important;
    height: 26px !important;
    margin-top: 10px !important;
  }

  .hm-plan-stack {
    gap: 7px !important;
  }

  .hm-plan-chip {
    border-radius: 14px !important;
    padding: 10px 8px 10px 28px !important;
  }

  .hm-plan-chip::before {
    left: 10px !important;
    top: 13px !important;
    width: 11px !important;
    height: 11px !important;
    box-shadow: inset 0 0 0 4px var(--hm-green) !important;
  }

  .hm-plan-chip strong {
    font-size: 12px !important;
  }

  .hm-plan-chip span {
    margin-top: 4px !important;
    font-size: 9.5px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }

  .hm-blueprint-map {
    margin-top: 12px !important;
    border-radius: 16px !important;
    padding: 12px !important;
  }

  .hm-blueprint-map__row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .hm-blueprint-map__row span {
    min-height: 30px !important;
    font-size: 10px !important;
  }

  .hm-blueprint-map__caption {
    margin-top: 8px !important;
    font-size: 10px !important;
  }

  .hm-trust-strip {
    padding: 12px 0 !important;
  }

  .hm-trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .hm-trust-strip__grid div {
    grid-template-columns: 30px 1fr !important;
    column-gap: 8px !important;
    min-height: 62px !important;
    padding: 10px 4px !important;
  }

  .hm-trust-strip .hm-trust-icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px !important;
  }

  .hm-trust-strip .hm-trust-icon svg {
    width: 17px !important;
    height: 17px !important;
  }

  .hm-trust-strip strong {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .hm-trust-strip span:not(.hm-trust-icon) {
    font-size: 11px !important;
    line-height: 1.45 !important;
    white-space: nowrap !important;
  }

  .hm-recaptcha-note {
    font-size: 11px;
  }
}

@media (max-width: 374px) {
  .hm-hero__badges {
    flex-wrap: wrap !important;
  }

  .hm-hero__title {
    font-size: 31px !important;
  }

  .hm-hero-number .hm-num {
    font-size: 32px !important;
  }

  .hm-hero-number:first-child .hm-num {
    font-size: 38px !important;
  }

  .hm-trust-strip span:not(.hm-trust-icon) {
    white-space: normal !important;
  }

  .hm-blueprint-canvas {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   Migrated from homepage-monthly-result-fix.js injectResultStyles()
   ============================================================ */

[data-section="seo-result"] .hm-section__head {
  margin-bottom: 44px;
}

[data-section="seo-result"] .hm-section__head h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  font-size: clamp(34px, 3.15vw, 44px);
  line-height: 1.34;
  letter-spacing: -0.045em;
}

[data-section="seo-result"] .hm-section__head p:not(.hm-section__label) {
  max-width: 820px;
  line-height: 1.9;
}

[data-section="seo-result"] .hm-note.hm-note--center {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(28, 46, 68, 0.64);
}

.hm-result-note-mobile-break {
  display: inline;
}

@media (max-width: 767px) {
  [data-section="seo-result"] {
    padding-bottom: 64px;
  }

  [data-section="seo-result"] .hm-section__head {
    margin-bottom: 28px;
  }

  [data-section="seo-result"] .hm-section__head h2 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(27px, 7.5vw, 33px);
    line-height: 1.4;
  }

  [data-section="seo-result"] .hm-section__head p:not(.hm-section__label) {
    line-height: 1.86;
  }

  [data-section="seo-result"] .hm-result-grid {
    display: flex;
    gap: 14px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 8px 18px 18px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  [data-section="seo-result"] .hm-result-grid::-webkit-scrollbar {
    display: none;
  }

  [data-section="seo-result"] .hm-result-card {
    flex: 0 0 min(84vw, 350px);
    scroll-snap-align: start;
    gap: 15px;
    padding: 18px;
    border-radius: 26px;
  }

  [data-section="seo-result"] .hm-device-showcase {
    min-height: 162px;
    padding-right: 34px;
  }

  [data-section="seo-result"] .hm-device-showcase__desktop {
    height: 150px;
    border-radius: 17px;
  }

  [data-section="seo-result"] .hm-device-showcase__bar {
    gap: 5px;
    padding: 9px 12px;
  }

  [data-section="seo-result"] .hm-device-showcase__bar span {
    width: 7px;
    height: 7px;
  }

  [data-section="seo-result"] .hm-device-showcase__desktop img {
    height: calc(100% - 25px);
  }

  [data-section="seo-result"] .hm-device-showcase__mobile {
    width: 66px;
    height: 121px;
    border-width: 4px;
    border-radius: 15px;
  }

  [data-section="seo-result"] .hm-result-card__industry {
    gap: 6px;
    padding: 6px 9px;
    font-size: 11px;
  }

  [data-section="seo-result"] .hm-result-card__industry .hm-asset-icon {
    width: 16px;
    height: 16px;
  }

  [data-section="seo-result"] .hm-result-card h3 {
    margin-top: 12px;
    font-size: 19px;
    line-height: 1.38;
    letter-spacing: -0.035em;
  }

  [data-section="seo-result"] .hm-result-card__company {
    margin-top: 6px !important;
    font-size: 12px !important;
  }

  [data-section="seo-result"] .hm-result-card ul {
    margin-top: 12px;
  }

  [data-section="seo-result"] .hm-result-card li {
    min-height: 50px;
    padding: 12px 14px;
  }

  [data-section="seo-result"] .hm-result-card li strong {
    font-size: 20px;
  }

  [data-section="seo-result"] .hm-result-card li span {
    font-size: 13px;
  }

  [data-section="seo-result"] .hm-note.hm-note--center {
    max-width: 310px;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.8;
  }

  .hm-result-note-mobile-break {
    display: block;
  }
}

/* ============================================================
   Migrated from homepage-monthly.js injectHeroStyles()
   ============================================================ */
.hm-lp-header { position: fixed !important; top: 0; left: 0; right: 0; width: 100%; background: rgba(255,255,255,0.46) !important; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom-color: rgba(217,228,239,0.34) !important; box-shadow: none !important; }
.hm-lp-header__inner { min-height: 64px; }
.hm-lp-header__logo { letter-spacing: -0.02em; font-weight: 900; }
.hm-hero { padding: 118px 0 82px; }
.hm-hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr); gap: 56px; }
.hm-hero__content { max-width: 760px; }
.hm-hero__title { max-width: 760px; font-size: clamp(44px, 4.75vw, 60px); line-height: 1.14; letter-spacing: -0.032em; }
.hm-hero__title span { color: var(--hm-navy); }
.hm-hero__title em { display: inline-block; color: var(--hm-blue); font-style: normal; }
.hm-title-zero { display: inline-block; margin: 0 0.04em; color: var(--hm-green) !important; font-family: Arial, Helvetica, sans-serif; font-weight: 900; letter-spacing: -0.08em; transform: translateY(0.02em); }
.hm-hero__subtitle { display: block; max-width: 670px; margin: 22px 0 0; border-radius: 0; background: transparent; color: #344054 !important; font-size: 18px !important; font-weight: 800; line-height: 1.75 !important; padding: 0; box-shadow: none; }
.hm-pc-br { display: block; }
.hm-hero__numbers { max-width: 620px; margin-top: 28px; grid-template-columns: 0.95fr 1.25fr; gap: 22px; }
.hm-hero-number { position: relative; overflow: visible; border: 0; border-left: 4px solid rgba(31, 111, 184, 0.28); border-radius: 0; background: transparent; box-shadow: none; padding: 4px 0 4px 18px; }
.hm-hero-number:first-child { border-color: var(--hm-green); background: transparent; }
.hm-hero-number:first-child::after { display: none; }
.hm-hero-number span { color: var(--hm-muted); font-size: 13px; font-weight: 900; letter-spacing: 0.03em; }
.hm-hero-number strong { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 3px; margin-top: 2px; color: var(--hm-navy); line-height: 0.95; white-space: nowrap; }
.hm-hero-number .hm-num { color: var(--hm-navy); font-family: Arial, Helvetica, sans-serif; font-size: clamp(42px, 5.2vw, 62px); font-weight: 900; letter-spacing: -0.06em; }
.hm-hero-number .hm-unit { color: var(--hm-navy); font-size: clamp(22px, 2.1vw, 28px); font-weight: 900; letter-spacing: -0.03em; }
.hm-hero-number:first-child .hm-num { color: var(--hm-green); font-size: clamp(48px, 6vw, 72px); }
.hm-hero-number:first-child .hm-unit { color: var(--hm-green); }
.hm-hero__badges { gap: 10px; margin-top: 26px; }
.hm-hero__badges span { display: inline-flex; align-items: center; border-radius: 12px; border: 1px solid rgba(37, 167, 121, 0.22); background: rgba(238, 250, 245, 0.72); color: var(--hm-navy); box-shadow: none; padding: 9px 13px; font-size: 13px; }
.hm-hero__badges span::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; margin-right: 7px; border-radius: 999px; background: var(--hm-green); color: #fff; font-size: 11px; font-weight: 900; }
.hm-button { gap: 8px; }
.hm-button-icon { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; transition: transform .2s ease; }
.hm-button-icon svg { width: 18px; height: 18px; }
.hm-button:hover .hm-button-icon { transform: translateX(2px); }
.hm-strategy-board { position: relative; max-width: 480px; margin-left: auto; border: 1px solid rgba(18, 49, 79, 0.12); border-radius: 32px; background: rgba(255,255,255,0.9); box-shadow: 0 28px 70px rgba(18, 49, 79, 0.16); overflow: hidden; }
.hm-strategy-board::before { content: ''; position: absolute; inset: -1px; background: radial-gradient(circle at 85% 8%, rgba(37,167,121,0.14), transparent 28%), radial-gradient(circle at 12% 12%, rgba(31,111,184,0.12), transparent 30%); pointer-events: none; }
.hm-strategy-board__bar { position: relative; display: flex; align-items: center; gap: 8px; padding: 18px 22px; border-bottom: 1px solid #edf2f7; }
.hm-strategy-board__bar span { width: 10px; height: 10px; border-radius: 999px; background: #d8e3ee; }
.hm-strategy-board__body { position: relative; padding: 26px; }
.hm-strategy-board__eyebrow { display: inline-flex; border-radius: 999px; background: var(--hm-sky); color: var(--hm-blue); font-size: 12px; font-weight: 900; padding: 7px 11px; }
.hm-strategy-board__title { margin: 16px 0 20px; color: var(--hm-navy); font-size: clamp(22px, 2vw, 24px); font-weight: 900; line-height: 1.35; letter-spacing: -0.035em; white-space: nowrap; }
.hm-strategy-board__main { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hm-strategy-tile { border: 1px solid rgba(217,228,239,0.9); border-radius: 18px; background: rgba(255,255,255,0.86); padding: 16px; }
.hm-strategy-tile strong { display: block; color: var(--hm-navy); font-size: 15px; font-weight: 900; }
.hm-strategy-tile small { display: block; margin-top: 6px; color: var(--hm-muted); font-size: 12px; font-weight: 800; line-height: 1.6; }
.hm-strategy-tile--score { grid-column: span 2; display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 16px; background: linear-gradient(135deg, #f7fbff, #eefaf5); }
.hm-strategy-rank { display: flex; align-items: center; justify-content: center; width: 76px; height: 76px; border-radius: 22px; background: #fff; color: var(--hm-green); box-shadow: 0 12px 28px rgba(37,167,121,0.14); }
.hm-strategy-rank svg { display: block; width: 34px; height: 34px; color: inherit; }
.hm-strategy-rank svg path { fill: currentColor !important; }
.hm-strategy-lines { display: grid; gap: 8px; margin-top: 12px; }
.hm-strategy-lines i { display: block; height: 8px; border-radius: 999px; background: #e2ebf5; }
.hm-strategy-lines i:nth-child(1) { width: 92%; }
.hm-strategy-lines i:nth-child(2) { width: 72%; }
.hm-strategy-lines i:nth-child(3) { width: 84%; }
.hm-strategy-flow { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding: 14px; border-radius: 18px; background: var(--hm-navy); color: #fff; }
.hm-strategy-flow span { flex: 1; border-radius: 999px; background: rgba(255,255,255,0.14); padding: 8px 10px; font-size: 12px; font-weight: 900; text-align: center; }
.hm-strategy-flow b { color: rgba(255,255,255,0.72); }
.hm-trust-strip { padding: 18px 0; }
.hm-trust-strip__grid { align-items: stretch; }
.hm-trust-strip__grid div { position: relative; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; column-gap: 14px; min-height: 76px; border-left: 0; padding: 14px 12px; }
.hm-trust-strip__grid div::before { display: none !important; }
.hm-trust-strip .hm-trust-icon { grid-row: 1 / span 2; display: inline-flex !important; align-items: center !important; justify-content: center !important; width: 40px; height: 40px; border-radius: 14px; background: rgba(37, 167, 121, 0.1); color: var(--hm-green) !important; align-self: center; justify-self: center; line-height: 0; }
.hm-trust-strip .hm-trust-icon svg { display: block; width: 21px; height: 21px; stroke: currentColor !important; color: inherit !important; stroke-width: 2; }
.hm-trust-strip .hm-trust-icon svg * { stroke: currentColor !important; }
.hm-trust-strip strong { font-size: 17px; align-self: end; }
.hm-trust-strip span:not(.hm-trust-icon) { margin-top: 2px; align-self: start; }

@media (max-width: 1024px) {
  .hm-hero__grid { grid-template-columns: 1fr; }
  .hm-hero__content { max-width: none; }
  .hm-strategy-board { margin: 0; }
}

@media (max-width: 767px) {
  .hm-lp-header__inner { min-height: 58px; }
  .hm-hero { padding: 90px 0 62px; }
  .hm-hero__title { font-size: clamp(34px, 10vw, 44px); }
  .hm-hero__subtitle { font-size: 15px !important; }
  .hm-pc-br { display: none; }
  .hm-hero__numbers { grid-template-columns: 1fr; gap: 16px; }
  .hm-hero-number .hm-num { font-size: 46px; }
  .hm-hero-number:first-child .hm-num { font-size: 56px; }
  .hm-strategy-board__title { white-space: normal; }
  .hm-strategy-board__main { grid-template-columns: 1fr; }
  .hm-strategy-tile--score { grid-column: auto; grid-template-columns: 1fr; }
  .hm-strategy-flow { flex-direction: column; align-items: stretch; }
  .hm-strategy-flow b { display: none; }
}

/* ============================================================
   Migrated from homepage-monthly-visual.js injectVisualStyles()
   ============================================================ */
.hm-blueprint-board {
  position: relative;
  max-width: 510px;
  margin-left: auto;
  border: 1px solid rgba(18,49,79,0.1);
  border-radius: 34px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 30px 76px rgba(18,49,79,0.15);
  overflow: hidden;
}

.hm-blueprint-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(37,167,121,0.16), transparent 30%),
    radial-gradient(circle at 8% 20%, rgba(31,111,184,0.12), transparent 28%),
    linear-gradient(135deg, rgba(247,251,255,0.55), rgba(255,255,255,0));
  pointer-events: none;
}

.hm-blueprint-board__bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(237,242,247,0.9);
}

.hm-blueprint-board__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d8e3ee;
}

.hm-blueprint-board__body {
  position: relative;
  padding: 28px;
}

.hm-blueprint-board__label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--hm-sky);
  color: var(--hm-blue);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 12px;
}

.hm-blueprint-board__title {
  margin: 16px 0 20px;
  color: var(--hm-navy);
  font-size: clamp(22px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.hm-blueprint-canvas {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 12px;
  align-items: stretch;
}

.hm-site-wire {
  min-height: 238px;
  border: 1px solid rgba(217,228,239,0.9);
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  padding: 16px;
}

.hm-site-wire__hero {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(234,245,255,0.9), rgba(238,250,245,0.92));
  padding: 16px;
}

.hm-site-wire__label {
  width: 72px;
  height: 9px;
  border-radius: 999px;
  background: rgba(31,111,184,0.24);
}

.hm-site-wire__title {
  width: 86%;
  height: 14px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--hm-navy);
  opacity: 0.9;
}

.hm-site-wire__text {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.hm-site-wire__text i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #dfe9f4;
}

.hm-site-wire__text i:nth-child(1) { width: 96%; }
.hm-site-wire__text i:nth-child(2) { width: 72%; }

.hm-site-wire__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hm-site-wire__cards span {
  height: 50px;
  border-radius: 14px;
  background: #f0f6fc;
  border: 1px solid rgba(217,228,239,0.75);
}

.hm-site-wire__button {
  width: 132px;
  height: 34px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--hm-green);
  box-shadow: 0 12px 24px rgba(37,167,121,0.16);
}

.hm-plan-stack {
  display: grid;
  gap: 10px;
}

.hm-plan-chip {
  position: relative;
  border: 1px solid rgba(217,228,239,0.9);
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  padding: 14px 12px 14px 40px;
}

.hm-plan-chip::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 17px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(37,167,121,0.14);
  box-shadow: inset 0 0 0 5px var(--hm-green);
}

.hm-plan-chip strong {
  display: block;
  color: var(--hm-navy);
  font-size: 14px;
  font-weight: 900;
}

.hm-plan-chip span {
  display: block;
  margin-top: 5px;
  color: var(--hm-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

.hm-blueprint-map {
  position: relative;
  margin-top: 16px;
  border-radius: 20px;
  background: var(--hm-navy);
  padding: 14px;
  color: #fff;
}

.hm-blueprint-map__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hm-blueprint-map__row span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.hm-blueprint-map__caption {
  margin-top: 10px;
  color: rgba(255,255,255,0.76);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1024px) {
  .hm-blueprint-board { margin: 0; }
}

@media (max-width: 767px) {
  .hm-blueprint-board__body { padding: 22px; }
  .hm-blueprint-canvas { grid-template-columns: 1fr; }
  .hm-site-wire { min-height: 220px; }
  .hm-plan-chip span { white-space: normal; }
  .hm-blueprint-map__row { grid-template-columns: repeat(2, 1fr); }
}
