/* ==========================================================
   ボウメット付き防災セット LP — HIH brand styling
   ========================================================== */

/* 関連LPバナー（3枚並び） */
.related-lp-section { padding-bottom: 60px; }
.related-lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.related-lp-card {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}
.related-lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}
.related-lp-card img {
  display: block;
  width: 100%;
  height: auto;
}
.related-lp-label {
  display: block;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
  .related-lp-grid { grid-template-columns: 1fr; gap: 16px; }
}

:root {
  --brand: #D8401F;          /* HIH orange-red */
  --brand-dark: #A82A12;
  --brand-deep: #6F1A0A;
  --ink: #1A1413;            /* near-black, warm */
  --ink-2: #3A302E;
  --ink-3: #6A615F;
  --paper: #FAF6F1;          /* warm off-white */
  --paper-2: #F2EBE2;
  --line: #E5DCD0;
  --accent-yellow: #F2C94C;
  --bg-dark: #1A1413;
  --bg-section: #FAF6F1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-feature-settings: "palt" 1;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-weight: 900; letter-spacing: 0.04em; line-height: 1.35; margin: 0; }
p { margin: 0; text-wrap: pretty; }

.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.hdr-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.hdr-logo { width: 38px; height: 38px; border-radius: 6px; flex-shrink: 0; }
.hdr-title { font-size: 12px; font-weight: 700; color: var(--ink-2); line-height: 1.3; }
.hdr-title b { color: var(--brand); display: block; font-size: 14px; }
.hdr-cta {
  background: var(--brand); color: #fff; font-weight: 800;
  padding: 10px 14px; border-radius: 999px; font-size: 12px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 2px 0 var(--brand-dark);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 32px 20px 0;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
}
.hero-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-yellow); }
.hero h1 {
  font-size: clamp(28px, 7vw, 44px);
  margin: 16px 0 12px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}
.hero h1 .lg { font-size: 1.25em; display: block; }
.hero h1 .mark { background: var(--accent-yellow); color: var(--ink); padding: 0 8px; border-radius: 4px; }
.hero-lede { font-size: 15px; opacity: 0.95; margin-bottom: 18px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hero-badge {
  background: #fff; color: var(--brand-dark);
  font-size: 11px; font-weight: 800;
  padding: 6px 10px; border-radius: 4px;
}
.hero-img {
  margin: 0 -20px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a1a14, #4a2a1f);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-cta-row { padding: 18px 0 28px; display: grid; gap: 10px; }
.btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 18px; border-radius: 12px;
  font-weight: 800; font-size: 16px;
  text-decoration: none;
  transition: transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-rakuten { background: #BF0000; color: #fff; box-shadow: 0 3px 0 #800; }
.btn-amazon { background: #FF9900; color: #111; box-shadow: 0 3px 0 #C77900; }
.btn-official { background: #fff; color: var(--brand); box-shadow: 0 3px 0 rgba(0,0,0,0.15); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); box-shadow: none; }

/* ---------- Section primitive ---------- */
.section { padding: 56px 0; }
.section-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
  color: var(--brand); margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--brand); }
.section-h2 { font-size: clamp(24px, 5.5vw, 32px); margin-bottom: 8px; }
.section-h2 .br { color: var(--brand); }
.section-lede { font-size: 14px; color: var(--ink-2); margin-bottom: 28px; }

.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark .section-eyebrow { color: var(--accent-yellow); }
.section-dark .section-eyebrow::before { background: var(--accent-yellow); }
.section-dark .section-h2 .br { color: var(--accent-yellow); }
.section-dark .section-lede { color: rgba(255,255,255,0.7); }

.section-paper2 { background: var(--paper-2); }

/* ---------- Data stat blocks ---------- */
.stats { display: grid; gap: 16px; grid-template-columns: 1fr; }
.stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 24px 20px;
}
.stat-num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(56px, 14vw, 80px);
  font-weight: 900;
  line-height: 1; color: #fff;
  letter-spacing: -0.04em;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-num .pct { font-size: 0.5em; }
.stat-num .small { font-size: 0.4em; color: var(--accent-yellow); margin-left: 8px; align-self: center; }
.stat-label { font-size: 13px; color: var(--accent-yellow); font-weight: 700; margin-top: 8px; }
.stat-desc { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; line-height: 1.6; }

/* ---------- Problem section ---------- */
.problem-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  position: relative;
  margin-bottom: 14px;
}
.problem-card .qmark {
  position: absolute; top: -14px; left: 16px;
  background: var(--ink); color: var(--accent-yellow);
  font-size: 20px; font-weight: 900;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.problem-card h3 { font-size: 18px; margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: var(--ink-2); }

.versus {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 24px 0;
}
.versus-card {
  border-radius: 12px; padding: 18px 14px; text-align: center;
}
.versus-bad { background: #F1E8E2; color: var(--ink-2); }
.versus-good { background: var(--brand); color: #fff; box-shadow: 0 6px 20px rgba(216,64,31,0.3); }
.versus-card .label { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; opacity: 0.8; }
.versus-card h4 { font-size: 16px; margin: 6px 0 8px; }
.versus-card .img-slot {
  aspect-ratio: 1;
  background: rgba(0,0,0,0.06);
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--ink-3);
}
.versus-good .img-slot { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.8); }
.versus-card ul { padding: 0; margin: 0; list-style: none; font-size: 12px; text-align: left; }
.versus-card li { padding: 4px 0 4px 16px; position: relative; line-height: 1.5; }
.versus-bad li::before { content: "✕"; position: absolute; left: 0; color: var(--ink-3); font-weight: 700; }
.versus-good li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-yellow); font-weight: 900; }

/* ---------- Product reveal ---------- */
.reveal {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  padding: 60px 0;
  text-align: center;
}
.reveal .product-name {
  font-size: clamp(48px, 13vw, 80px);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 8px 0;
}
.reveal .product-jp { font-size: 18px; font-weight: 800; color: var(--ink); }
.reveal .product-img-slot {
  margin: 28px auto;
  aspect-ratio: 4/3; max-width: 480px;
  background: #fff;
  border: 1px dashed var(--brand);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 13px; font-weight: 700;
  position: relative;
}
.reveal .tagline {
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 900; line-height: 1.5;
  color: var(--ink); max-width: 560px; margin: 0 auto;
}
.reveal .tagline .hl {
  background: linear-gradient(transparent 60%, var(--accent-yellow) 60%);
  padding: 0 4px;
}

/* ---------- Feature cards ---------- */
.features { display: grid; gap: 16px; margin-top: 28px; }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.feature-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 22px;
  flex-shrink: 0;
}
.feature h3 { font-size: 18px; margin-bottom: 6px; color: var(--brand-deep); }
.feature p { font-size: 13.5px; color: var(--ink-2); }
.feature-img {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  background: var(--paper-2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--ink-3);
  margin-top: 4px;
}

/* ---------- 3-step demo ---------- */
.steps {
  background: var(--ink); color: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  margin-top: 28px;
}
.steps h3 { font-size: 16px; color: var(--accent-yellow); margin-bottom: 4px; }
.steps .timer { font-size: 36px; font-weight: 900; font-family: "Inter", sans-serif; margin-bottom: 18px; }
.steps .timer .unit { font-size: 16px; color: rgba(255,255,255,0.6); margin-left: 4px; }
.step-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.step {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
}
.step-n {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-yellow); color: var(--ink);
  font-weight: 900; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.step-img {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,0.5);
}
.step-label { font-size: 12px; font-weight: 700; }

/* ---------- Scenes ---------- */
.scenes { display: grid; gap: 14px; margin-top: 28px; }
.scene {
  display: grid; grid-template-columns: 110px 1fr;
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
}
.scene-img {
  background: linear-gradient(135deg, var(--paper-2), var(--line));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--ink-3); text-align: center;
}
.scene-body { padding: 14px 16px; }
.scene-tag {
  display: inline-block; background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 3px;
  letter-spacing: 0.1em; margin-bottom: 6px;
}
.scene h3 { font-size: 16px; margin-bottom: 4px; }
.scene p { font-size: 12.5px; color: var(--ink-2); line-height: 1.6; }

/* ---------- Comparison table ---------- */
.compare {
  margin-top: 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.compare-head {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 800; text-align: center;
}
.compare-head > div { padding: 12px 6px; border-right: 1px solid rgba(255,255,255,0.1); }
.compare-head .winner { background: var(--brand); }
.compare-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
  font-size: 12px; text-align: center;
}
.compare-row > div { padding: 14px 6px; border-right: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.compare-row .label { font-weight: 700; text-align: left; padding-left: 14px; justify-content: flex-start; background: var(--paper-2); }
.compare-row .winner { background: rgba(216,64,31,0.06); font-weight: 800; color: var(--brand-dark); }
.compare-mark { font-size: 18px; font-weight: 900; }
.compare-mark.yes { color: var(--brand); }
.compare-mark.no { color: var(--ink-3); }
.compare-mark.so { color: #B89000; }

/* ---------- Lineup / SKUs ---------- */
.lineup-cat { margin-top: 36px; }
.lineup-cat:first-of-type { margin-top: 28px; }
.cat-head {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-left: 6px solid var(--brand);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 14px;
}
.cat-num {
  font-family: "Inter", sans-serif; font-weight: 900;
  font-size: 28px; line-height: 1; color: var(--brand);
  font-style: italic;
}
.cat-title { font-size: 18px; font-weight: 800; margin: 0 0 2px; line-height: 1.4; }
.cat-title em { font-style: normal; color: var(--brand); font-size: 14px; font-weight: 700; }
.cat-sub { font-size: 12.5px; color: var(--ink-2); margin: 0; line-height: 1.6; }
@media (min-width: 720px) {
  .cat-head { padding: 18px 24px; gap: 18px; }
  .cat-num { font-size: 36px; }
  .cat-title { font-size: 22px; }
  .cat-title em { font-size: 16px; }
  .cat-sub { font-size: 13.5px; }
}
.lineup { display: grid; gap: 18px; }
.sku h3 small { display: inline-block; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-top: 2px; }
.btn-pending {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}
.sku {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.sku.featured { border-color: var(--brand); box-shadow: 0 8px 30px rgba(216,64,31,0.15); }
.sku-ribbon {
  position: absolute; top: 12px; right: -28px;
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 800; padding: 4px 32px;
  transform: rotate(35deg); letter-spacing: 0.1em;
}
.sku-img {
  aspect-ratio: 1/1;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.sku-body { padding: 18px 18px 22px; }
.sku-tag { font-size: 11px; font-weight: 800; color: var(--brand); letter-spacing: 0.1em; }
.sku h3 { font-size: 19px; margin: 4px 0 8px; }
.sku-desc { font-size: 13px; color: var(--ink-2); margin-bottom: 12px; }
.sku-includes {
  background: var(--paper); border-radius: 8px;
  padding: 10px 12px; font-size: 12px;
  margin-bottom: 14px;
}
.sku-includes b { color: var(--brand-dark); display: block; margin-bottom: 4px; font-size: 11px; letter-spacing: 0.1em; }
.sku-includes ul { margin: 0; padding: 0 0 0 16px; }
.sku-includes li { line-height: 1.6; }
.sku-price {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 12px;
}
.sku-price .yen {
  font-family: "Inter", sans-serif; font-weight: 900;
  font-size: 26px; color: var(--ink);
}
.sku-price .yen .small { font-size: 14px; }
.sku-price .tax { font-size: 11px; color: var(--ink-3); }
.sku-buttons { display: grid; gap: 8px; }
.sku-buttons .btn { padding: 12px 14px; font-size: 14px; }

/* ---------- Reviews ---------- */
.reviews { display: grid; gap: 14px; margin-top: 28px; }
.review {
  background: #fff; border-radius: 14px; padding: 18px;
  border: 1px solid var(--line);
}
.review-stars { color: var(--accent-yellow); font-size: 14px; letter-spacing: 2px; margin-bottom: 4px; }
.review-title { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.review-body { font-size: 13px; color: var(--ink-2); margin-bottom: 10px; }
.review-meta { font-size: 11px; color: var(--ink-3); display: flex; gap: 8px; align-items: center; }
.review-meta .who { font-weight: 700; color: var(--ink-2); }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; border: 1px solid var(--line); }

/* image fills for all placeholders */
.img-slot, .feature-img, .scene-img, .sku-img, .product-img-slot { overflow: hidden; position: relative; }
.img-slot img, .feature-img img, .scene-img img, .sku-img img, .product-img-slot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.final.has-bg::before {
  content: ""; position: absolute; inset: 0;
  background: var(--final-bg) center/cover no-repeat;
  opacity: 0.35; z-index: 0;
}
.final.has-bg { position: relative; overflow: hidden; }
.final.has-bg .wrap { position: relative; z-index: 1; }
.feature-img-seq { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; aspect-ratio: auto; }
.feature-img-seq img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; display: block; }

/* ---------- そなぷー (HIH mascot) ---------- */
.sonapu {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
}
.sonapu img { display: block; width: 100%; height: auto; }
.sonapu-hero {
  bottom: -10px; right: 12px;
  width: 88px;
  animation: sonapu-bob 3.4s ease-in-out infinite;
}
.sonapu-inline {
  position: relative; display: inline-block;
  width: 56px; vertical-align: middle; margin: 0 6px -8px;
  animation: sonapu-bob 3.2s ease-in-out infinite;
}
.sonapu-faq {
  position: absolute; top: -36px; right: 8px;
  width: 80px;
  animation: sonapu-tilt 3.6s ease-in-out infinite;
  transform-origin: bottom center;
}
.sonapu-final {
  position: absolute; bottom: 18px; left: 16px;
  width: 104px;
  animation: sonapu-bob 3.0s ease-in-out infinite;
  z-index: 2;
}
@keyframes sonapu-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes sonapu-tilt {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
@media (min-width: 720px) {
  .sonapu-hero { width: 120px; right: 32px; bottom: -16px; }
  .sonapu-faq { width: 110px; right: 20px; top: -56px; }
  .sonapu-final { width: 140px; left: 40px; }
  .sonapu-inline { width: 72px; margin: 0 8px -12px; }
}

/* ---------- B2B 大口見積りバナー ---------- */
.b2b-banner {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  background: #1a1006;
  transition: transform .35s ease, box-shadow .35s ease;
}
.b2b-banner:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,0.18); }
.b2b-banner img {
  display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9;
}
.b2b-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,12,6,0.78) 0%, rgba(20,12,6,0.55) 55%, rgba(20,12,6,0.15) 100%);
  color: #fff;
  padding: 22px 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.b2b-eyebrow {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
  color: var(--accent-yellow);
  text-transform: uppercase;
}
.b2b-title { font-size: clamp(20px, 5vw, 30px); font-weight: 800; line-height: 1.35; }
.b2b-desc { font-size: 12.5px; opacity: 0.92; line-height: 1.7; }
.b2b-cta {
  display: inline-flex; align-items: center;
  align-self: flex-start;
  margin-top: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 13px; font-weight: 800;
  padding: 10px 16px; border-radius: 999px;
}
@media (min-width: 720px) {
  .b2b-overlay { padding: 40px 48px; gap: 12px; }
  .b2b-desc { font-size: 14px; }
  .b2b-cta { font-size: 15px; padding: 12px 22px; }
}
.step-img { overflow: hidden; }
.step-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- FAQ ---------- */
.faqs { margin-top: 24px; }
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  padding: 14px 44px 14px 50px;
  position: relative;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; position: absolute; left: 14px; top: 13px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Inter", sans-serif; font-weight: 800; font-size: 13px;
}
.faq summary::after {
  content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 700; color: var(--brand);
}
.faq[open] summary::after { content: "−"; }
.faq-body {
  padding: 0 18px 16px 50px;
  font-size: 13px; color: var(--ink-2);
  line-height: 1.7;
}

/* ---------- Final CTA ---------- */
.final {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(180deg, var(--brand-dark) 0%, var(--brand-deep) 100%);
  color: #fff; text-align: center;
  padding: 60px 20px;
}
.final h2 { font-size: clamp(24px, 6vw, 32px); margin-bottom: 12px; }
.final p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 24px; }
.final .btn-row { display: grid; gap: 10px; max-width: 380px; margin: 0 auto; }

/* ---------- Footer ---------- */
.ftr {
  background: #0f0a09; color: rgba(255,255,255,0.6);
  padding: 32px 20px; font-size: 12px;
  text-align: center; line-height: 1.8;
}
.ftr a { color: rgba(255,255,255,0.85); text-decoration: none; }
.ftr-logo { width: 48px; height: 48px; border-radius: 8px; margin: 0 auto 12px; }

/* ---------- Floating bottom CTA ---------- */
.fixed-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 8px 12px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
  transform: translateY(100%); transition: transform .25s;
}
.fixed-cta.show { transform: translateY(0); }
.fixed-cta .btn { padding: 10px 8px; font-size: 12px; border-radius: 8px; box-shadow: none; }

/* ---------- TOC / wire markers ---------- */
.wire-note {
  background: #fff8e7; border: 1px dashed #d4a72c;
  border-radius: 8px; padding: 10px 14px;
  font-size: 11.5px; color: #8a6500;
  margin-top: 16px;
}
.wire-note b { color: #5e4500; }

/* ---------- Tweaks panel ---------- */
.tw {
  position: fixed; bottom: 80px; right: 16px; z-index: 100;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  width: 240px; font-size: 12px;
  display: none;
}
.tw.show { display: block; }
.tw h4 { font-size: 11px; letter-spacing: 0.15em; color: var(--ink-3); margin-bottom: 10px; font-weight: 800; }
.tw .row { margin-bottom: 12px; }
.tw .row b { display: block; font-size: 11px; color: var(--ink-2); margin-bottom: 6px; }
.tw .opts { display: flex; gap: 4px; flex-wrap: wrap; }
.tw .opt {
  border: 1px solid var(--line); background: #fff;
  padding: 5px 9px; border-radius: 6px; font-size: 11px; cursor: pointer;
}
.tw .opt.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .hero { padding: 56px 40px 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .scenes { grid-template-columns: 1fr 1fr; }
  .lineup-1 { grid-template-columns: minmax(0, 520px); justify-content: center; }
  .lineup-3 { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .hero-cta-row { grid-template-columns: 1fr 1fr 1fr; }
  .final .btn-row { grid-template-columns: 1fr 1fr 1fr; max-width: 720px; }
  .fixed-cta { display: none; }
}
