/* ============================================================
  ReachWorks LP v3 — style.css
  作成: 2026-04-09
  方針: スマホ基準 / BEM / インラインスタイル禁止 / 白+オレンジ
============================================================ */

/* ── CSS変数 ── */
:root {
  --white:        #FFFFFF;
  --bg-gray:      #F8F9FB;
  --navy:         #1B2A4A;
  --orange:       #E86B30;
  --orange-hover: #C75520;
  --orange-bg:    #FFF5EF;
  --orange-cta:   #FFF8F4;
  --line-green:   #06C755;
  --line-hover:   #05A847;
  --text-primary: #1A202C;
  --text-body:    #4A5568;
  --text-muted:   #718096;
  --text-light:   rgba(255,255,255,0.85);
  --border:       rgba(0,0,0,0.08);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.07);
  --radius-card:  14px;
  --radius-btn:   10px;
  --radius-badge: 100px;
  --transition:   0.2s ease;
  --container:    960px;
  --header-h:     64px;
  --subnav-h:     44px;
  /* v4追加 */
  --gold:         #D4A74A;
  --gold-bg:      #FAF4E6;
  --gold-border:  rgba(212,167,74,0.35);
  --dark-grad:    linear-gradient(135deg, #0F1829 0%, #1B2A4A 100%);
}

/* ── リセット ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Hiragino Sans', 'YuGothic', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: auto;
  padding-top: calc(var(--header-h) + var(--subnav-h));
  padding-bottom: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── コンテナ ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── フェードインアニメーション ── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
  HEADER
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.logo { font-size: 1.25rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.logo span { color: var(--orange); }
.header-nav { display: none; align-items: center; gap: 24px; font-size: 0.9rem; }
.header-nav a { color: var(--text-body); transition: color var(--transition); }
.header-nav a:hover { color: var(--orange); }

.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-subnav {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  height: var(--subnav-h); background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px; padding: 0 20px;
  font-size: 0.85rem; z-index: 999;
}
.mobile-subnav a { color: var(--text-body); }

.mobile-menu {
  position: fixed;
  top: calc(var(--header-h) + var(--subnav-h));
  left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 998;
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  display: block; padding: 16px 0; font-size: 1.1rem;
  font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text-primary);
}

/* ============================================================
  BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; border-radius: var(--radius-btn);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center; white-space: nowrap; cursor: pointer; line-height: 1.4;
}
.btn:active { transform: scale(0.97); }
.btn-xs    { height: 32px; padding: 0 14px; font-size: 0.8rem; border-radius: 8px; }
.btn-sm    { height: 38px; padding: 0 20px; font-size: 0.875rem; }
.btn-lg    { min-height: 52px; padding: 14px 28px; font-size: 1rem; width: 100%; max-width: 320px; }
.btn-xl    { min-height: 56px; padding: 16px 32px; font-size: 1.05rem; width: 100%; max-width: 380px; }
.btn-fixed { min-height: 48px; flex: 1; padding: 12px 16px; font-size: 0.95rem; border-radius: 10px; }
.btn-full  { max-width: 100%; width: 100%; }

.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 16px rgba(232,107,48,0.25);
}
.btn-primary:hover { background: var(--orange-hover); box-shadow: 0 6px 20px rgba(232,107,48,0.35); }

.btn-line {
  background: var(--line-green); color: #fff;
  box-shadow: 0 4px 16px rgba(6,199,85,0.25);
}
.btn-line:hover { background: var(--line-hover); }

.btn-ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ============================================================
  SECTION 共通
============================================================ */
.section { padding: 72px 0; }
.section-white { background: var(--white); }
.section-gray  { background: var(--bg-gray); }
.section-navy  { background: var(--navy); }
.section-cta   { background: var(--orange-cta); }

.section-title {
  font-size: clamp(1.375rem, 4vw, 1.875rem);
  font-weight: 800; line-height: 1.4;
  letter-spacing: -0.02em; margin-bottom: 20px; color: var(--text-primary);
}
.section-title em { font-style: normal; color: var(--orange); }
.section-title-light { color: var(--white); }
.section-lead { font-size: 1rem; color: var(--text-body); line-height: 1.9; margin-bottom: 40px; }
.section-lead strong { color: var(--text-primary); }

/* ============================================================
  S1: HERO
============================================================ */
.hero {
  background: var(--white);
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--border);
}
.hero-badge {
  display: inline-block;
  background: var(--orange-bg); color: var(--orange);
  font-size: 0.8rem; font-weight: 700;
  padding: 6px 14px; border-radius: var(--radius-badge);
  margin-bottom: 20px; border: 1px solid rgba(232,107,48,0.2);
}
/* ① バッジ中央寄せ */
.hero-badge-center {
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-heading {
  font-size: clamp(1.55rem, 8.5vw, 2.0rem);
  font-weight: 900; line-height: 1.35;
  letter-spacing: -0.035em; margin-bottom: 16px; color: var(--text-primary);
}
.hero-heading-sub {
  display: block;
  font-size: 0.6em;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.hero-heading-accent {
  color: var(--orange);
  font-size: 0.88em;
  letter-spacing: -0.04em;
  line-height: 1.45;
}
.hero-lead { font-size: 0.95rem; color: var(--text-body); line-height: 1.85; margin-bottom: 22px; }
.hero-marunage { font-size: clamp(1.4rem, 5vw, 2rem); font-weight: 800; color: var(--orange); margin-top: 12px; line-height: 1.3; }
.hero-service-tag {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: 0.05em;
}
.hero-arrow-up {
  display: block;
  margin-top: 12px;
  text-align: center;
}
.hero-arrow-up__label {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-align: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden;
}
.hero-stats li {
  display: flex; flex-direction: column;
  align-items: center; padding: 14px 10px; background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stats li:nth-child(2n) { border-right: none; }
.hero-stats li:nth-child(3),
.hero-stats li:nth-child(4) { border-bottom: none; }
.hero-stats-num { font-size: 1.35rem; font-weight: 800; color: var(--orange); line-height: 1.25; text-align: center; }
.hero-stats-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; text-align: center; line-height: 1.45; }
.hero-stats-note { font-size: 0.62rem; color: var(--text-muted); line-height: 1.4; display: block; margin-top: 2px; }
.stats-detail-link { font-size: 0.68rem; color: var(--orange); text-decoration: underline; display: block; margin-top: 3px; }

.hero-cta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.scroll-indicator { text-align: center; padding: 16px 0 8px; display: block; cursor: pointer; }
.scroll-arrow { font-size: 1.5rem; color: var(--orange); animation: bounce 1.5s infinite; display: inline-block; opacity: 0.6; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ③ Statsグリッド内 打ち消し線 — 黒文字・赤い打ち消し線 */
.hero-stats-num s {
  color: #333;
  text-decoration: line-through;
  text-decoration-color: #ee0033;
  font-weight: 700;
}

/* ② モニターバー（ヒーロー外・独立ブロック） */
.monitor-bar {
  background: var(--orange-bg);
  border-top: 1px solid rgba(232,107,48,0.15);
  border-bottom: 1px solid rgba(232,107,48,0.25);
  padding: 12px 0;
}
.monitor-bar-inner {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.875rem; color: var(--text-primary); line-height: 1.6;
}
.monitor-bar-inner s {
  color: #333;
  text-decoration: line-through;
  text-decoration-color: #ee0033;
}
.monitor-bar-inner small {
  font-size: 0.7rem; color: var(--text-muted);
  width: 100%; padding-left: 16px;
}

.hero-monitor-badge {
  display: flex; align-items: flex-start; gap: 8px;
  background: var(--orange-bg); border: 1px solid rgba(232,107,48,0.25);
  border-radius: 10px; padding: 12px 16px; font-size: 0.875rem;
  color: var(--text-primary); max-width: 420px; flex-wrap: wrap;
  line-height: 1.6;
}
.hero-monitor-badge small { font-size: 0.7rem; color: var(--text-muted); width: 100%; }
.badge-dot {
  width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; flex-shrink: 0; margin-top: 6px; animation: blink 1.8s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ============================================================
  S2: PAIN
============================================================ */
.pain-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px;
}
.pain-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 20px; box-shadow: var(--shadow-sm);
}
.pain-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.4; }
.pain-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-body); }
.pain-card strong { color: var(--text-primary); }
.pain-resolve { text-align: center; font-size: 1.25rem; font-weight: 800; color: var(--orange); margin-top: 8px; }

/* ============================================================
  S3: SOLUTION
============================================================ */
.engine-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 24px; }
.engine-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.engine-icon { margin-bottom: 16px; }
.engine-label { font-size: 0.75rem; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; margin-bottom: 6px; }
.engine-title { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); line-height: 1.4; margin-bottom: 12px; }
.engine-body { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; }
.engine-price-note {
  text-align: center; font-size: 1rem; color: var(--text-body);
  background: var(--orange-bg); border: 1px solid rgba(232,107,48,0.2);
  border-radius: 10px; padding: 14px 20px;
}
.engine-price-note strong { color: var(--orange); font-size: 1.05rem; }

/* ============================================================
  S4: BEFORE / AFTER
============================================================ */
.ba-grid { display: flex; flex-direction: column; gap: 14px; }
.ba-card { border-radius: var(--radius-card); padding: 24px; flex: 1; }
.ba-before { background: #FFF5F5; border: 1px solid rgba(229,62,62,0.2); }
.ba-after  { background: var(--orange-bg); border: 1px solid rgba(232,107,48,0.2); }
.ba-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 14px; }
.ba-before .ba-label { color: #C53030; }
.ba-after  .ba-label { color: var(--orange); }
.ba-list { display: flex; flex-direction: column; gap: 8px; }
.ba-list li { font-size: 0.9rem; color: var(--text-body); padding-left: 20px; position: relative; line-height: 1.6; }
.ba-before .ba-list li::before { content: '✗'; position: absolute; left: 0; color: #C53030; font-weight: 700; }
.ba-after  .ba-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.ba-arrow { display: flex; justify-content: center; align-items: center; padding: 4px 0; }
.ba-arrow-icon { width: 40px; height: 40px; transform: rotate(90deg); }

/* ============================================================
  S5: PRICE（ネイビー背景）
============================================================ */
.section-navy .section-title { color: var(--white); }
.price-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--orange);
  background: rgba(232,107,48,0.12); border: 1px solid rgba(232,107,48,0.3);
  border-radius: var(--radius-badge); padding: 5px 14px; margin-bottom: 12px;
}
.price-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
.price-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-card); padding: 28px 24px;
}
.price-card-featured {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,107,48,0.2), var(--shadow-md);
}
.price-card-badge {
  display: inline-block; background: var(--orange); color: var(--white);
  font-size: 0.8rem; font-weight: 700; padding: 5px 14px;
  border-radius: var(--radius-badge); margin-bottom: 14px;
}
.price-card-name { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.price-card-featured .price-card-name { color: var(--text-muted); }
.price-num { font-size: 2.5rem; font-weight: 800; color: var(--orange); line-height: 1; }
.price-unit { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-left: 4px; }
.price-card-featured .price-unit { color: var(--text-body); }
.price-card-compare { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.price-card-compare strong { color: var(--orange); }
.price-card-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.price-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-includes li { font-size: 0.875rem; padding-left: 18px; position: relative; color: rgba(255,255,255,0.7); }
.price-card-featured .price-includes li { color: var(--text-body); }
.price-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

.price-includes-all {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card); padding: 24px; margin-bottom: 20px;
}
.price-includes-title { font-size: 0.875rem; font-weight: 700; color: var(--text-light); margin-bottom: 16px; }
.price-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.price-includes-grid li { font-size: 0.85rem; color: var(--text-light); padding-left: 16px; position: relative; }
.price-includes-grid li::before { content: '·'; position: absolute; left: 0; color: var(--orange); }

.price-subsidy { background: rgba(232,107,48,0.1); border: 1px solid rgba(232,107,48,0.25); border-radius: 10px; padding: 16px 20px; }
.price-subsidy p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }
.price-subsidy strong { color: var(--white); }

/* ============================================================
  S6: STEPS
============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step-num {
  width: 52px; height: 52px; background: var(--orange); color: var(--white);
  border-radius: 50%; font-size: 1.375rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,107,48,0.3);
}
.step-body { padding-top: 10px; }
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.step-desc { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; }
.step-connector {
  width: 2px; height: 32px;
  background: linear-gradient(to bottom, var(--orange), rgba(232,107,48,0.2));
  margin-left: 25px; border-radius: 2px;
}

/* ============================================================
  S7: TRUST
============================================================ */
.about { margin-bottom: 56px; }
.about-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.about-fact-tag {
  background: var(--orange-bg); color: var(--orange);
  border: 1px solid rgba(232,107,48,0.2); border-radius: var(--radius-badge);
  font-size: 0.8rem; font-weight: 700; padding: 5px 14px;
}
.about-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.9; margin-bottom: 14px; }
.about-text strong { color: var(--text-primary); }
.about-sns {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem;
  color: var(--text-muted); border: 1px solid var(--border);
  border-radius: var(--radius-badge); padding: 8px 16px;
  transition: border-color var(--transition), color var(--transition);
}
.about-sns:hover { border-color: var(--text-primary); color: var(--text-primary); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 0.95rem; font-weight: 700;
  color: var(--text-primary); cursor: pointer; text-align: left; gap: 12px;
}
.faq-q::before { content: 'Q'; color: var(--orange); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.faq-q::after { content: '+'; font-size: 1.25rem; font-weight: 400; color: var(--text-muted); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px 28px; font-size: 0.9rem; color: var(--text-body); line-height: 1.9; }
.faq-item.open .faq-a { display: block; }

/* ============================================================
  S8: WORKS
============================================================ */
.works-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.work-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); }
.work-thumb { width: 100%; aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; }
.work-thumb-placeholder { background: var(--bg-gray); font-size: 1rem; font-weight: 700; color: var(--text-muted); }
.work-thumb-dark { background: var(--navy); color: rgba(255,255,255,0.4); }
.work-body { padding: 20px; }
.work-tag { font-size: 0.75rem; font-weight: 700; color: var(--orange); background: var(--orange-bg); border-radius: var(--radius-badge); padding: 3px 10px; display: inline-block; margin-bottom: 8px; }
.work-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.work-desc { font-size: 0.875rem; color: var(--text-body); margin-bottom: 12px; line-height: 1.7; }
.work-link { font-size: 0.875rem; font-weight: 700; color: var(--orange); transition: opacity var(--transition); }
.work-link:hover { opacity: 0.7; }

/* ============================================================
  S9: FINAL CTA
============================================================ */
.section-cta .section-title { text-align: center; }
.section-cta .section-lead { text-align: center; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 20px; }
.cta-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
  FOOTER
============================================================ */
.footer { background: var(--navy); padding: 56px 0 32px; color: var(--text-light); }
.footer-inner { display: flex; flex-direction: column; gap: 32px; margin-bottom: 40px; }
.footer-logo { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 0.85rem; color: var(--text-light); margin-bottom: 4px; }
.footer-addr { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-email { font-size: 0.85rem; color: var(--text-light); border-bottom: 1px solid rgba(255,255,255,0.2); display: inline-block; transition: border-color var(--transition); }
.footer-email:hover { border-color: var(--white); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }

/* ============================================================
  固定フッターバー（スマホのみ）
============================================================ */
.fixed-footer-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; gap: 10px;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06); z-index: 900;
}

/* ── ナビアクティブ ── */
.nav-active { color: var(--orange) !important; font-weight: 700; }

/* ============================================================
  TABLET（768px〜）
============================================================ */
@media (min-width: 768px) {
  body { padding-top: var(--header-h); padding-bottom: 0; }

  .header-nav { display: flex; }
  .hamburger { display: none; }
  .mobile-subnav { display: none; }

  .hero { padding: 64px 0 72px; }
  .hero-mocks { gap: 24px; margin: 32px 0 0; }
  .mock-phone { width: 200px; }

  .pain-grid { grid-template-columns: 1fr 1fr; }
  .engine-grid { grid-template-columns: 1fr 1fr; }

  .ba-grid { flex-direction: row; align-items: stretch; }
  .ba-arrow-icon { transform: rotate(0deg); }

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

  .steps { flex-direction: row; align-items: flex-start; }
  .step { flex-direction: column; align-items: center; text-align: center; flex: 1; padding: 0 16px; }
  .step-connector { width: auto; height: 2px; flex: 0.4; margin: 26px 0 0; align-self: flex-start; }
  .step-body { padding-top: 16px; }

  .works-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: row; justify-content: space-between; }
  .footer-nav { flex-direction: column; gap: 10px; align-items: flex-end; }
  .fixed-footer-bar { display: none; }
}

/* ============================================================
  PC（1024px〜）
============================================================ */
/* iPad専用（768〜1023px）: 見出しサイズ調整のみ */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-heading {
    font-size: clamp(1.8rem, 3.8vw, 2.4rem);
    letter-spacing: -0.035em;
  }
}

@media (min-width: 1024px) {
  .section { padding: 96px 0; }
  .hero { padding: 80px 0 88px; }
  .works-grid { grid-template-columns: repeat(3, 1fr); }

  /* iPad Pro以上: hero 左右2カラム */
  .hero .scroll-indicator { display: none; }
  .hero .container { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
  .hero-body { flex: 0 0 52%; min-width: 0; }
  .hero-stats { flex: 0 0 100%; max-width: none; margin-top: 28px; margin-bottom: 0; }
  .hero-mocks {
    flex: 1;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    align-items: center;
  }
  .hero-mocks .mock-phone { width: 200px; }
  .hero-heading {
    font-size: clamp(1.75rem, 2.8vw, 2.2rem);
    letter-spacing: -0.04em;
  }
}

/* ============================================================
  v4 追加スタイル
============================================================ */

/* ── BA ラベル マーク ── */
.ba-mark {
  display: inline-block;
  margin-right: 6px;
  font-size: 1.1em;
  font-weight: 900;
}
.ba-before .ba-mark { color: #C53030; }
.ba-after  .ba-mark { color: var(--orange); }

/* ── ヒーロー スタッツ 金色強化 ── */
.hero-stats li {
  background: linear-gradient(180deg, #fff 0%, var(--gold-bg) 100%);
}
.hero-stats-label {
  color: var(--gold);
  font-weight: 700;
}

/* ── スマホモック ── */
.hero-mocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 24px 0 0;
}
@media (min-width: 600px) {
  .hero-mocks { flex-direction: row; justify-content: center; gap: 20px; }
  .hero-cta { flex-direction: row; flex-wrap: wrap; gap: 12px; }
}
.mock-phone {
  width: 160px;
  border-radius: 24px;
  background: #1a1a1a;
  box-shadow: 0 10px 36px rgba(0,0,0,0.22);
  overflow: hidden;
  border: 2px solid #000;
  padding: 3px 3px 6px;
  flex-shrink: 0;
}
.mock-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 6px 14px 4px;
  font-size: 0.6rem;
  background: #1a1a1a;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.mock-screen {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  padding: 10px 10px 6px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fafafa;
}
/* Googleマップモック */
.mock-searchbar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 0.62rem;
  color: #333;
}
.mock-search-icon { font-size: 0.75rem; }
.mock-map-area {
  background: linear-gradient(135deg, #d4e9c2 0%, #b8d9b0 100%);
  border-radius: 8px;
  height: 60px;
  position: relative;
  overflow: hidden;
}
.mock-map-pin {
  position: absolute;
  font-size: 1rem;
  transform: translate(-50%, -50%);
}
.mock-map-pin--star { top: 40%; left: 40%; font-size: 1.2rem; }
.mock-map-pin--a    { top: 25%; left: 65%; }
.mock-map-pin--b    { top: 65%; left: 55%; }
.mock-shop-list { display: flex; flex-direction: column; gap: 4px; }
.mock-shop-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  border: 1px solid #eee;
}
.mock-shop-item--highlight {
  border-color: var(--orange);
  background: var(--orange-bg);
}
.mock-shop-rank {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-shop-name { font-size: 0.65rem; font-weight: 700; color: var(--text-primary); }
.mock-shop-meta { font-size: 0.55rem; color: var(--text-muted); }
/* ChatGPTモック */
.mock-screen-chatgpt { background: #f7f7f8; }
.mock-ai-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #333;
  padding: 2px 0 6px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 4px;
}
.mock-ai-icon { font-size: 0.9rem; }
.mock-bubble {
  border-radius: 12px;
  padding: 7px 10px;
  font-size: 0.6rem;
  line-height: 1.5;
}
.mock-bubble-user {
  background: var(--orange);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  max-width: 80%;
}
.mock-bubble-ai {
  background: #fff;
  color: var(--text-body);
  border: 1px solid #e5e5e5;
  border-bottom-left-radius: 4px;
  max-width: 95%;
}
.mock-highlight { color: var(--orange); }
.mock-label {
  font-size: 0.6rem;
  text-align: center;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.mock-label strong { color: var(--orange); }

/* ── プルトゥリフレッシュ スピナー ── */
.ptr-spinner {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border: 3px solid rgba(232,107,48,0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  animation: ptr-spin 1s linear infinite;
}
.ptr-spinner--visible { opacity: 1; }
@keyframes ptr-spin {
  to { transform: translateX(-50%) rotate(360deg); }
}

/* ============================================================
  S3b: ChatGPT体験促しセクション
============================================================ */
.chatgpt-exp-section {
  background: var(--dark-grad);
  padding: 48px 0;
}

.chatgpt-exp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.chatgpt-exp-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}
.chatgpt-exp-date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.chatgpt-exp-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 28px;
}

.chatgpt-bubble {
  margin-bottom: 12px;
}
.chatgpt-bubble--user {
  margin-left: auto;
  max-width: 85%;
  background: #2563EB;
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  padding: 14px 18px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.chatgpt-bubble--ai {
  max-width: 85%;
  background: #2A2A2A;
  color: rgba(255,255,255,0.9);
  border-radius: 16px 16px 16px 4px;
  padding: 16px 18px;
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.8;
}
.chatgpt-ai-icon {
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.chatgpt-bubble-inner p + p { margin-top: 10px; }
.chatgpt-bubble-inner ul,
.chatgpt-bubble-inner ol {
  margin-top: 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chatgpt-bubble-inner ul { list-style: disc; }
.chatgpt-bubble-inner ol { list-style: decimal; }
.chatgpt-bubble-inner li { font-size: 0.88rem; line-height: 1.8; }

.chatgpt-accordion-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background var(--transition);
}
.chatgpt-accordion-trigger:hover { background: rgba(255,255,255,0.13); }
.chatgpt-trigger-icon { font-size: 0.75rem; flex-shrink: 0; }

.chatgpt-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-bottom: 0;
}
.chatgpt-accordion-body.is-open {
  max-height: 1000px;
  margin-bottom: 12px;
}

.chatgpt-exp-closing {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(232,107,48,0.12);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

.chatgpt-exp-disclaimer {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .chatgpt-exp-section { padding: 72px 0; }
  .chatgpt-bubble--user,
  .chatgpt-bubble--ai { max-width: 70%; }
}

/* ============================================================
  PC大（1280px〜）
============================================================ */
@media (min-width: 1280px) {
  .hero { padding: 88px 0 96px; }
  .hero .container { gap: 56px; }
  .hero-body { flex: 0 0 50%; }
  .hero-mocks { gap: 24px; }
  .hero-mocks .mock-phone { width: 224px; }
}

/* ============================================================
  P2: スマホ時代の証明
============================================================ */
.section-kicker {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-kicker-light {
  color: rgba(255,255,255,0.7);
}
.section-lead-light {
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-top: -8px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.era-mock-wrap {
  display: flex;
  justify-content: center;
  margin: 32px 0 24px;
}
.era-screen {
  background: #fafafa;
}
.era-screen-label {
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 8px;
  font-weight: 600;
}
.era-search-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.era-search-list li {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.65rem;
  color: #333;
  font-weight: 500;
}
.era-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.era-fact {
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.era-fact-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}
.era-fact-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.era-closing {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-top: 24px;
}
.era-closing strong {
  color: var(--orange);
  display: block;
  font-size: 1.2rem;
  margin-top: 6px;
}
@media (min-width: 768px) {
  .era-mock-wrap { margin: 40px 0 32px; }
  .era-fact-grid { max-width: 480px; margin: 24px auto; }
  .era-closing { font-size: 1.3rem; }
}

/* ============================================================
  P3: なぜ今すぐ必要か（緊急性）
============================================================ */
.news-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.news-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--orange);
}
.news-date {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.news-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.news-source {
  font-size: 0.7rem;
  color: #aaa;
  margin-top: 8px;
}
.urgency-question {
  margin: 32px 0 0;
  padding: 24px 20px;
  border: 2px solid var(--orange);
  border-radius: 12px;
  text-align: center;
  background: #fff8f5;
}
.urgency-q {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
}
.urgency-q-big {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  margin: 12px 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .news-cards { flex-direction: row; gap: 20px; }
  .news-card { flex: 1; }
  .urgency-q-big { font-size: 2rem; }
}

/* ============================================================
  P4: 種明かし
============================================================ */
.reveal-block {
  text-align: center;
  margin: 32px 0 24px;
}
.reveal-big {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.reveal-hp {
  font-size: 2.2rem;
  color: var(--orange);
  display: block;
  line-height: 1.2;
}
.reveal-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.reveal-explain {
  margin: 32px 0;
}
.reveal-explain-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 20px;
}
.reveal-compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reveal-old, .reveal-new {
  border-radius: 12px;
  padding: 20px;
}
.reveal-old {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
}
.reveal-old ul li { color: #888; }
.reveal-new {
  background: #fff5ef;
  border: 2px solid var(--orange);
}
.reveal-col-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.reveal-old .reveal-col-label { color: #aaa; }
.reveal-new .reveal-col-label { color: var(--orange); }
.reveal-old ul, .reveal-new ul {
  padding-left: 18px;
  margin: 0;
}
.reveal-old ul li, .reveal-new ul li {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.reveal-new ul li { color: var(--text); }
.reveal-answer {
  background: var(--orange);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  margin-top: 32px;
}
.reveal-answer-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.reveal-answer-big {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 12px;
}
.reveal-answer-big strong { color: #ffe0cc; }
.reveal-answer-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .reveal-compare { flex-direction: row; }
  .reveal-old, .reveal-new { flex: 1; }
  .reveal-hp { font-size: 3.5rem; }
  .reveal-answer-big { font-size: 1.2rem; }
}

/* ============================================================
  P6: CTA（メイン）/ P8: 再CTA
============================================================ */
.cta-kicker {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.cta-kicker-light {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.cta-lead {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin: 16px 0 24px;
}
.cta-safety {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.cta-safety-item {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
}
.btn-cta-main {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.cta-sub-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}
.cta-alt {
  text-align: center;
  margin-top: 24px;
}
.cta-alt-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.section-cta-final {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
}
@media (min-width: 768px) {
  .btn-cta-main { font-size: 1.1rem; padding: 18px 36px; }
}

/* ============================================================
  P2: Googleビジネスプロフィール（sample2用）
  プレフィックス: gbp-
============================================================ */
.gbp-mock-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 28px 0 36px;
}
.gbp-mock-phone { width: 180px; }
.gbp-mock-arrow {
  font-size: 1.4rem;
  color: var(--text-muted);
  transform: rotate(90deg);
  display: block;
  line-height: 1;
}
@media (min-width: 600px) {
  .gbp-mock-wrap { flex-direction: row; justify-content: center; align-items: flex-start; gap: 8px; }
  .gbp-mock-arrow { transform: none; align-self: center; }
}
@media (min-width: 768px) { .gbp-mock-phone { width: 200px; } }
@media (min-width: 1024px) { .gbp-mock-phone { width: 210px; } }

.gbp-mock-screen-search { background: #fff; }
.gbp-search-suggestion {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4px;
}
.gbp-suggestion-item {
  font-size: 0.62rem;
  padding: 6px 10px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.gbp-suggestion-item:last-child { border-bottom: none; }
.gbp-suggestion-item--active { background: #fff5ef; color: var(--orange); font-weight: 700; }

.gbp-mock-screen-card { background: #fff; }
.gbp-card-photo {
  background: #e8e8e8;
  border-radius: 8px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.gbp-card-name { font-size: 0.72rem; font-weight: 700; color: #1a1a1a; margin-top: 6px; }
.gbp-card-rating { font-size: 0.58rem; color: #666; }
.gbp-card-hours { font-size: 0.58rem; color: #2e7d32; font-weight: 600; }

.gbp-mock-screen-owner { background: #fff; }
.gbp-owner-menu-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #1a1a1a;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
  margin-bottom: 6px;
}
.gbp-owner-item {
  font-size: 0.6rem;
  padding: 7px 8px;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
}
.gbp-owner-item--highlight {
  color: var(--orange);
  font-weight: 700;
  background: #fff5ef;
  border-radius: 6px;
  border-bottom: none;
}

.gbp-pattern-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
@media (min-width: 768px) { .gbp-pattern-grid { flex-direction: row; gap: 20px; } }
.gbp-pattern-card {
  flex: 1;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 20px 20px 16px;
  border-left: 4px solid #ccc;
}
.gbp-pattern-card--unknown { border-left-color: #718096; }
.gbp-pattern-card--casual  { border-left-color: var(--orange); }
.gbp-pattern-card--aware   { border-left-color: #1a2a4a; }
.gbp-pattern-num { font-size: 0.72rem; font-weight: 700; color: #999; margin-bottom: 6px; }
.gbp-pattern-title { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; line-height: 1.5; margin-bottom: 10px; }
.gbp-pattern-body { font-size: 0.88rem; color: #555; line-height: 1.7; margin-bottom: 12px; }
.gbp-pattern-tag { font-size: 0.8rem; font-weight: 700; color: var(--orange); }

.gbp-message {
  text-align: center;
  padding: 32px 20px;
  background: #fff5ef;
  border-radius: 16px;
  margin: 0 0 28px;
}
.gbp-message-main { font-size: 1.25rem; font-weight: 800; line-height: 1.6; color: #1a1a1a; margin-bottom: 12px; }
.gbp-message-sub { font-size: 0.92rem; color: #555; line-height: 1.8; }
@media (min-width: 768px) { .gbp-message-main { font-size: 1.5rem; } }

.gbp-cta { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
.gbp-cta-btn { text-align: center; }
.gbp-cta-or { text-align: center; font-size: 0.8rem; color: #999; }

