@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Serif+JP:wght@500;700;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

:root {
  --c-bg: #f7f0e4;
  --c-bg-alt: #fffaf1;
  --c-bg-ink: #090909;
  --c-fg: #15120e;
  --c-fg-soft: #4d453b;
  --c-fg-mute: #81786b;
  --c-line: rgba(21, 18, 14, .13);
  --c-accent: #b91516;
  --c-accent-dk: #7d0c0d;
  --c-highlight: #d7ad4a;
  --c-gold-soft: #f2dfb5;
  --c-green: #08a43d;
  --c-cta: var(--c-accent);
  --c-on-cta: #fff;
  --f-sans: "Noto Sans JP", sans-serif;
  --f-serif: "Noto Serif JP", serif;
  --f-num: "Bebas Neue", sans-serif;
  --shell-max: 1160px;
  --shell-pad: clamp(18px, 4vw, 34px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--c-bg-ink); }
body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--c-fg);
  background:
    radial-gradient(circle at 15% 0%, rgba(215, 173, 74, .16), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0%, #f4ead9 42%, #fffaf1 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: 20;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' opacity='.16' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, video, svg { max-width: 100%; }
.shell {
  width: min(100%, var(--shell-max));
  margin: 0 auto;
  padding-inline: var(--shell-pad);
}

.hero {
  position: relative;
  color: #fff;
  background: #090909;
  overflow: clip;
}
.hero-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}
.hero-topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.hero-brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}
.hero-brand-text b {
  display: block;
  letter-spacing: .03em;
  font-size: 17px;
  font-weight: 900;
}
.hero-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}
.hero-nav a {
  position: relative;
  transition: color .2s;
}
.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--c-highlight);
  transition: right .25s;
}
.hero-nav a:hover { color: #fff; }
.hero-nav a:hover::after { right: 0; }
.hero-topbar-right { display: flex; align-items: center; gap: 12px; }
.live-pill,
.hero-topbar-right .btn-cta-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 9px 16px;
  background: linear-gradient(180deg, #d92728, #9c1011);
  color: #fff;
  box-shadow: 0 12px 32px rgba(185,21,22,.34);
  font-size: 12px;
  font-weight: 900;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.16);
}

.movie-hero {
  min-height: clamp(680px, 92vh, 880px);
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.movie-bg,
.hero-film,
.hero-bg-tint,
.film-grain {
  position: absolute;
  inset: 0;
}
.hero-film {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.03);
}
.hero-bg-tint {
  background:
    linear-gradient(90deg, rgba(6,6,6,.92) 0%, rgba(6,6,6,.74) 32%, rgba(6,6,6,.42) 55%, rgba(6,6,6,.2) 100%),
    linear-gradient(0deg, #090909 0%, rgba(9,9,9,0) 24%, rgba(9,9,9,0) 72%, rgba(9,9,9,.58) 100%);
}
.film-grain {
  opacity: .18;
  mix-blend-mode: screen;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 80% 20%, rgba(215,173,74,.18), transparent 28rem);
}
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 720px) 220px;
  gap: 34px;
  align-items: end;
  padding-block: clamp(70px, 10vw, 126px);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--c-highlight);
  letter-spacing: .24em;
  font-family: var(--f-num);
  font-size: 18px;
}
.hero-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}
.hero-title {
  margin: 0;
  font-family: var(--f-serif);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.14;
  font-size: clamp(42px, 7vw, 94px);
  text-shadow: 0 22px 70px rgba(0,0,0,.7);
}
.hero-title .line { display: block; }
.hero-title .line-1 { font-size: .7em; }
.red-em { color: #ffefdf; }
.hero-title .line-mega,
.hero-title .marker-block {
  color: #fff;
  position: relative;
}
.hero-title .line-mega {
  color: #e84638;
  font-size: 1.36em;
  letter-spacing: -.08em;
}
.hero-title .marker-block::after {
  content: "";
  position: absolute;
  left: -.04em;
  right: -.04em;
  bottom: .08em;
  height: .2em;
  background: linear-gradient(90deg, rgba(215,173,74,.7), rgba(185,21,22,.5));
  z-index: -1;
}
.hero-sub {
  margin: 22px 0 0;
  color: rgba(255,255,255,.88);
  font-family: var(--f-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
}
.hero-sub b { color: var(--c-highlight); }
.hero-main-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 34px;
}
.btn-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  border: 0;
  border-radius: 999px;
  padding: 18px 30px;
  color: #fff;
  background: linear-gradient(180deg, #db2425, #9d1011);
  box-shadow: 0 16px 36px rgba(185,21,22,.42), inset 0 -4px 0 rgba(0,0,0,.28);
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 34%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  animation: btnSweep 3.4s ease-in-out infinite;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(185,21,22,.52), inset 0 -4px 0 rgba(0,0,0,.28);
}
@keyframes btnSweep {
  0%, 35% { left: -42%; }
  72%, 100% { left: 120%; }
}
.btn-cta .arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex: 0 0 auto;
}
.btn-cta .arrow svg { width: 15px; height: 15px; }
.line-btn,
.btn-cta-line {
  background: linear-gradient(180deg, #19c35b, #078d36) !important;
  box-shadow: 0 16px 36px rgba(8,164,61,.36), inset 0 -4px 0 rgba(0,0,0,.24) !important;
}
.hero-note,
.cta-band-foot,
.btn-cta-wrap .sub {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
}
.film-strip {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 34px;
}
.film-scene {
  padding: 12px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: rgba(255,255,255,.68);
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
  transition: border-color .2s, color .2s, background .2s;
}
.film-scene b {
  display: block;
  margin-bottom: 2px;
  color: var(--c-highlight);
  font-family: var(--f-num);
  font-size: 18px;
}
.film-scene.is-active {
  color: #fff;
  border-color: rgba(215,173,74,.75);
  background: rgba(185,21,22,.28);
}
.hero-side-card {
  justify-self: end;
  width: 220px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: rgba(255,255,255,.84);
  background: rgba(8,8,8,.36);
  backdrop-filter: blur(16px);
}
.hero-side-card span {
  display: block;
  color: var(--c-highlight);
  font-family: var(--f-num);
  letter-spacing: .14em;
  font-size: 18px;
}
.hero-side-card b {
  display: block;
  margin: 8px 0;
  font-family: var(--f-num);
  font-size: 48px;
  line-height: .9;
}
.hero-side-card small { color: rgba(255,255,255,.66); line-height: 1.7; }
.movie-progress {
  position: absolute;
  left: var(--shell-pad);
  right: var(--shell-pad);
  bottom: 24px;
  z-index: 4;
  height: 3px;
  background: rgba(255,255,255,.16);
}
.movie-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-highlight));
  transform-origin: left;
  animation: heroProgress 11.916s linear infinite;
}
@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}

.hero-trust-row {
  color: #fff;
  background: #0d0f10;
  padding: 34px 0 18px;
  border-top: 1px solid rgba(215,173,74,.22);
  position: relative;
}
.hero-trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-card {
  position: relative;
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  overflow: hidden;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid rgba(215,173,74,.5);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 46px rgba(0,0,0,.22);
}
.trust-card-lbl { color: rgba(255,255,255,.75); font-weight: 900; }
.trust-card-val {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--c-highlight);
  font-family: var(--f-num);
  font-size: clamp(60px, 8vw, 96px);
  line-height: .92;
}
.trust-card-val i {
  color: #fff;
  font-family: var(--f-sans);
  font-size: .22em;
  font-style: normal;
  font-weight: 900;
}
.trust-card-sub { color: rgba(255,255,255,.56); font-size: 12px; }
.trust-card-laurel {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 64px;
  transform: translateY(-50%);
  opacity: .7;
}
.trust-card-laurel.left { left: 16px; }
.trust-card-laurel.right { right: 16px; }
.hero-trust-foot {
  width: min(100%, var(--shell-max));
  margin: 12px auto 0;
  padding-inline: var(--shell-pad);
  color: rgba(255,255,255,.46);
  text-align: right;
  font-size: 11px;
}
.hero-cta-band {
  color: #18120c;
  background: var(--c-bg-alt);
  padding: 24px 0 36px;
}
.hero-cta-band-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.cta-band-arrow { color: var(--c-highlight); font-size: 28px; animation: bounce 1.6s ease-in-out infinite; }
.cta-band-text { font-family: var(--f-serif); font-size: clamp(20px, 3vw, 32px); font-weight: 900; }
.cta-band-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.cta-band-pill {
  display: inline-flex;
  color: var(--c-accent);
  font-weight: 900;
  font-size: 13px;
}
.cta-band-foot { color: var(--c-fg-mute); }
@keyframes bounce { 50% { transform: translateY(6px); } }

.marquee {
  overflow: hidden;
  padding: 13px 0;
  color: var(--c-gold-soft);
  background: #090909;
  border-block: 1px solid rgba(215,173,74,.26);
}
.marquee .track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-weight: 900;
}
.marquee .track > span { display: inline-flex; gap: 28px; }
@keyframes marquee { to { transform: translateX(-50%); } }

section { position: relative; padding: clamp(72px, 10vw, 126px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-accent);
  letter-spacing: .18em;
  font-family: var(--f-num);
  font-size: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.sec-head { margin-bottom: clamp(30px, 5vw, 56px); }
.sec-head.center { text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-title {
  margin: 10px 0 0;
  font-family: var(--f-serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.32;
  letter-spacing: -.02em;
}
.hand { font-family: var(--f-serif); }
.red, .red-em { color: var(--c-accent); }
.marker {
  background: linear-gradient(transparent 58%, rgba(215,173,74,.46) 58%);
  padding-inline: .08em;
}
.sec-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--c-fg-soft);
  font-size: clamp(15px, 2vw, 18px);
}

.problems { background: var(--c-bg); }
.prob-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.prob {
  display: grid;
  grid-template-columns: 38px 56px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(49,33,15,.07);
  cursor: pointer;
}
.prob input { display: none; }
.prob-check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
}
.prob-check svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.prob-num { color: var(--c-highlight); font-family: var(--f-num); font-size: 25px; }
.prob-text { font-weight: 900; font-size: clamp(15px, 2vw, 18px); }
.prob-cta { margin-top: 38px; text-align: center; }
.prob-cta-arrow svg { width: 52px; height: 70px; }
.prob-cta-line { font-family: var(--f-serif); font-size: clamp(24px, 4vw, 42px); font-weight: 900; }

.overview,
.reasons,
.voices,
.apply,
.final { background: var(--c-bg-alt); }
.ovw-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 58px;
}
.ovw-stat,
.ovw-svc,
.rsn,
.comp-card,
.proc-step,
.proc-card,
.voice-card,
.faq-item,
.apply-step,
.booking-field input,
.date-card {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 46px rgba(49,33,15,.08);
}
.ovw-stat { padding: 24px 18px; }
.ovw-stat-num b {
  color: var(--c-accent);
  font-family: var(--f-num);
  font-size: clamp(44px, 6vw, 70px);
  line-height: .9;
}
.ovw-stat-num i { font-style: normal; font-weight: 900; }
.ovw-stat-text b { display: block; font-weight: 900; }
.ovw-stat-text span { color: var(--c-fg-mute); font-size: 12px; }
.ovw-svc-head { margin-bottom: 22px; text-align: center; }
.ovw-svc-title { margin: 8px 0 0; font-family: var(--f-serif); font-size: 28px; }
.ovw-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ovw-svc { padding: 24px; min-height: 230px; }
.ovw-svc-num,
.apply-step-no,
.proc-step-lbl,
.rsn-no b {
  color: var(--c-highlight);
  font-family: var(--f-num);
  font-size: 34px;
}
.ovw-svc-icon { width: 46px; height: 46px; color: var(--c-accent); }
.ovw-svc-title-c,
.apply-step-title,
.proc-title,
.voice-title,
.faq-q-text { font-weight: 900; }
.ovw-svc-desc,
.apply-step-d,
.proc-desc,
.voice-text,
.faq-a p { color: var(--c-fg-soft); }

.reasons { background: #11100f; color: #fff; }
.reasons .sec-title,
.reasons .rsn-lead,
.reasons .rsn-text { color: #fff; }
.rsn-list { display: grid; gap: 28px; }
.rsn {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.1fr;
  gap: 34px;
  padding: clamp(22px, 4vw, 44px);
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-color: rgba(215,173,74,.2);
}
.rsn-r .rsn-visual { order: 2; }
.rsn-visual { position: relative; min-height: 240px; }
.rsn-ill-svg { width: 100%; height: 100%; }
.rsn-tag {
  position: absolute;
  left: 0;
  top: 0;
  padding: 7px 12px;
  border: 1px solid rgba(215,173,74,.4);
  border-radius: 999px;
  color: var(--c-highlight);
  font-family: var(--f-num);
  letter-spacing: .12em;
}
.rsn-no {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}
.rsn-no small { display: block; color: rgba(255,255,255,.45); font-size: 11px; }
.rsn-lead {
  margin: 8px 0 16px;
  font-family: var(--f-serif);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.3;
}
.rsn-text { color: rgba(255,255,255,.74); }
.rsn-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.rsn-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 900;
}
.rsn-bullets svg { width: 16px; height: 16px; }

.comp { background: var(--c-bg); }
.comp-table,
.comp-grid,
.voices-grid,
.apply-grid {
  display: grid;
  gap: 14px;
}
.comp-grid,
.voices-grid { grid-template-columns: repeat(3, 1fr); }
.comp-podium {
  display: grid;
  grid-template-columns: .78fr 1.15fr 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.comp-col {
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 46px rgba(49,33,15,.08);
}
.comp-col-labels { background: rgba(21,18,14,.05); }
.comp-col-us {
  border-color: rgba(185,21,22,.42);
  background: linear-gradient(180deg, #fff, #fff8e8);
  transform: translateY(-10px);
}
.comp-col-head,
.comp-label-head,
.comp-col-foot,
.comp-label-foot {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
}
.comp-best,
.comp-label-tag,
.comp-col-tag {
  color: var(--c-accent);
  font-family: var(--f-num);
  letter-spacing: .12em;
  font-size: 16px;
}
.comp-col-name {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.2;
}
.comp-label-row,
.comp-cell {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-top: 1px solid var(--c-line);
}
.comp-label-num {
  color: var(--c-highlight);
  font-family: var(--f-num);
  font-size: 24px;
}
.comp-val { font-weight: 900; }
.comp-mark {
  width: 22px;
  height: 22px;
  color: var(--c-accent);
  flex: 0 0 auto;
}
.comp-mark.bad { color: var(--c-fg-mute); }
.comp-crown {
  width: 42px;
  margin: 0 auto -18px;
  position: relative;
  z-index: 1;
}
.comp-cta-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 900;
}
.comp-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
}
.comp-card { padding: 26px; }
.comp-card.best { border-color: rgba(185,21,22,.45); background: #fff; transform: translateY(-8px); }
.comp-card-title,
.comp-name { font-family: var(--f-serif); font-size: 26px; font-weight: 900; }
.comp-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--c-line);
  padding: 12px 0;
}
.comp-row b { color: var(--c-accent); }
.comp-note { color: var(--c-fg-mute); font-size: 12px; }

.proc,
.process { background: #11100f; color: #fff; }
.proc .sec-title,
.process .sec-title { color: #fff; }
.proc-grid,
.proc-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.proc-step,
.proc-card {
  color: var(--c-fg);
  padding: 20px;
  min-height: 220px;
}
.proc-item { display: grid; gap: 12px; }
.proc-rail { display: grid; place-items: center; }
.proc-circle {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--c-highlight);
  font-family: var(--f-num);
  font-size: 24px;
  margin: 0 auto;
}
.proc-circle small {
  display: block;
  font-size: 9px;
  line-height: 1;
}
.proc-circle b {
  display: block;
  font-size: 24px;
  line-height: 1;
}
.proc-card-head { display: grid; gap: 8px; }
.proc-card-title { margin: 0; font-weight: 900; }
.proc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.proc-time,
.proc-tag {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(185,21,22,.1);
  color: var(--c-accent);
  font-size: 11px;
  font-weight: 900;
}

.voices { background: var(--c-bg-alt); }
.voices-banner {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.voices-banner b,
.voice-income b,
.final-badges b {
  color: var(--c-accent);
  font-family: var(--f-num);
  font-size: clamp(50px, 7vw, 86px);
  line-height: .9;
}
.voice-card,
.voice {
  padding: 28px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 46px rgba(49,33,15,.08);
}
.voice-no {
  color: var(--c-accent);
  font-family: var(--f-num);
  letter-spacing: .12em;
  font-size: 18px;
}
.voice-portrait {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 12px 0;
  border-radius: 50%;
  color: #fff;
  background: #191714;
  position: relative;
}
.voice-portrait-initial { font-family: var(--f-num); font-size: 34px; }
.voice-lic {
  position: absolute;
  right: -18px;
  bottom: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--c-highlight);
  color: #111;
  font-size: 10px;
  font-weight: 900;
}
.voice-name b { display: block; font-size: 20px; }
.voice-name small { color: var(--c-fg-mute); }
.voice-h { font-family: var(--f-serif); font-size: 20px; }
.voice-q {
  margin: 0;
  color: var(--c-fg-soft);
  font-size: 14px;
}
.voice-stat {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.voice-stat-num {
  color: var(--c-accent);
  font-family: var(--f-num);
  font-size: 52px;
  line-height: .9;
}
.voice-stat-num i { font-family: var(--f-sans); font-size: .36em; font-style: normal; }
.voice-stat-sub { color: var(--c-fg-mute); font-size: 12px; }
.voice-meta { color: var(--c-fg-mute); font-size: 13px; }
.voice-text { font-size: 14px; }
.voice-income { margin-top: 18px; }

.faq { background: var(--c-bg); }
.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 42px 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.faq-q-mark,
.faq-a-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--f-num);
}
.faq-q-num { color: var(--c-highlight); font-family: var(--f-num); font-size: 22px; }
.faq-q-icon { transition: transform .2s; }
.faq-item.open .faq-q-icon { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 0 22px;
}
.faq-item.open .faq-a-inner { padding-bottom: 20px; }
.faq-a p { margin: 0; }

.promise { background: #11100f; color: #fff; }
.promise-wrap { max-width: 820px; margin: 0 auto; text-align: center; }
.promise-title { font-family: var(--f-serif); font-size: clamp(34px, 5vw, 58px); }
.promise-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.promise-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.check-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--c-highlight);
  flex: 0 0 auto;
}

.apply-grid {
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: stretch;
}
.apply-step { padding: 24px; }
.apply-arrow { display: grid; place-items: center; color: var(--c-highlight); }

.final {
  background:
    linear-gradient(rgba(9,9,9,.72), rgba(9,9,9,.72)),
    url("/assets/images/hero-scene-04.png") center / cover;
  color: #fff;
}
.final-wrap { max-width: 820px; margin: 0 auto; text-align: center; }
.final-tag {
  display: inline-flex;
  padding: 7px 14px;
  border: 1px solid rgba(215,173,74,.5);
  border-radius: 999px;
  color: var(--c-highlight);
  font-family: var(--f-num);
  letter-spacing: .14em;
}
.final-title {
  margin: 18px 0;
  font-family: var(--f-serif);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.22;
}
.final-lead { color: rgba(255,255,255,.78); }
.booking-step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 26px 0;
}
.booking-step-dot {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
}
.booking-step-dot.active { background: var(--c-highlight); color: #111; }
.booking-step-line { width: 40px; height: 1px; background: rgba(255,255,255,.18); }
.booking-panel {
  max-width: 620px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.booking-hidden { display: none !important; }
.booking-fields { display: grid; gap: 14px; }
.booking-field label { display: block; margin-bottom: 6px; text-align: left; font-weight: 900; }
.booking-field input,
.booking-section input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  color: #111;
}
.date-card {
  width: 100%;
  margin: 0 0 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.92);
  color: #111;
  cursor: pointer;
}
.date-card.selected { border-color: var(--c-highlight); box-shadow: 0 0 0 3px rgba(215,173,74,.25); }
.booking-actions { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.booking-btn-back,
.booking-btn-next {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
}
.booking-btn-next { background: var(--c-accent); color: #fff; }
.booking-btn-back { background: rgba(255,255,255,.16); color: #fff; }
.booking-confirm-box { text-align: left; display: grid; gap: 10px; }
.booking-confirm-row { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 8px; }
.booking-success-check { font-size: 42px; color: var(--c-highlight); }
.final-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  color: rgba(255,255,255,.8);
}

.ft {
  color: rgba(255,255,255,.72);
  background: #090909;
  padding: 44px 0;
}
.ft-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.ft-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.ft-brand-mark { width: 42px; height: 42px; border-radius: 50%; }
.ft-links { display: flex; flex-wrap: wrap; gap: 12px 18px; padding: 0; margin: 0; list-style: none; justify-content: end; }
.ft-copy { display: block; margin-top: 18px; text-align: right; }

.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(430px, calc(100vw - 36px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .24s, transform .24s;
}
.float-cta.is-on { opacity: 1; pointer-events: auto; transform: translateY(0); }
.float-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.float-cta-close {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
}
.float-cta-head { grid-column: 1 / -1; display: flex; gap: 8px; color: var(--c-accent); font-weight: 900; }
.float-cta-title { font-weight: 900; }
.float-cta-meta { color: var(--c-fg-mute); font-size: 11px; }
.float-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  background: var(--c-accent);
  font-weight: 900;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .58s ease, transform .58s ease;
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }

@media (max-width: 980px) {
  .hero-nav { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-side-card { justify-self: start; width: min(100%, 320px); }
  .hero-trust-inner,
  .ovw-stats,
  .ovw-svc-grid,
  .comp-podium,
  .comp-grid,
  .voices-grid,
  .proc-grid,
  .proc-list { grid-template-columns: 1fr 1fr; }
  .rsn,
  .rsn-r .rsn-visual { grid-template-columns: 1fr; order: initial; }
  .apply-grid { grid-template-columns: 1fr; }
  .apply-arrow { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  body { line-height: 1.7; }
  .hero-topbar-inner { min-height: 62px; }
  .hero-topbar-right { display: none; }
  .hero-brand-mark { width: 34px; height: 34px; }
  .movie-hero { min-height: 720px; }
  .hero-bg-tint {
    background:
      linear-gradient(90deg, rgba(6,6,6,.86), rgba(6,6,6,.58)),
      linear-gradient(0deg, #090909 0%, transparent 30%, rgba(9,9,9,.54) 100%);
  }
  .hero-title {
    max-width: calc(100vw - 40px);
    font-size: clamp(33px, 10vw, 44px);
    letter-spacing: -.04em;
  }
  .hero-left { width: 100%; max-width: calc(100vw - 40px); }
  .hero-title .line { white-space: normal; }
  .hero-title .line-mega { font-size: 1.04em; letter-spacing: -.04em; }
  .hero-sub { font-size: 20px; }
  .hero-main-action { display: grid; align-items: stretch; }
  .hero-btn {
    width: min(100%, calc(100vw - 40px));
    justify-self: start;
    padding-inline: 18px;
    font-size: 14px;
  }
  .film-strip,
  .hero-trust-inner,
  .ovw-stats,
  .ovw-svc-grid,
  .comp-podium,
  .comp-grid,
  .voices-grid,
  .proc-grid,
  .proc-list { grid-template-columns: 1fr; }
  .hero-cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-arrow { display: none; }
  .prob { grid-template-columns: 32px 42px 1fr; padding: 14px; }
  .trust-card { min-height: 130px; }
  .trust-card-val { font-size: 68px; }
  .faq-q { grid-template-columns: 34px 1fr 24px; }
  .faq-q-num { display: none; }
  .faq-a-inner { grid-template-columns: 34px 1fr; }
  .final-badges { flex-direction: column; gap: 12px; }
  .ft-inner { grid-template-columns: 1fr; }
  .ft-links { justify-content: start; }
  .ft-copy { text-align: left; }
  .float-cta { left: 12px; right: 12px; bottom: 12px; }
  .float-cta-card { grid-template-columns: 1fr; }
  .float-cta-btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Screenshot-faithful cinematic redesign */
.hero-brand-mark {
  display: none;
}
.hero-brand-text b {
  font-family: var(--f-serif);
  font-size: 25px;
  letter-spacing: -.02em;
}
.hero-brand-text::after {
  content: "by UGS";
  display: block;
  margin-top: -8px;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  color: rgba(255,255,255,.76);
}
.live-dot {
  display: none;
}
.live-pill {
  padding-inline: 26px;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(185,21,22,.42);
}
.cinema-hero {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  display: block;
  padding-bottom: 42px;
  background: #070707;
  overflow: hidden;
}
.cinema-grid {
  height: 560px;
  display: grid;
  grid-template-columns: 1.05fr .92fr .92fr 1.05fr;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.cinema-panel {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.1);
}
.cinema-panel img,
.cinema-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
  transform: scale(1.04);
  animation: cinemaDrift 18s ease-in-out infinite alternate;
}
.cinema-panel video {
  display: block;
}
.cinema-panel:nth-child(1) video { object-position: 78% center; }
.cinema-panel:nth-child(2) video { object-position: 42% center; }
.cinema-panel:nth-child(3) video { object-position: 60% center; }
.cinema-panel:nth-child(4) video { object-position: 86% center; }
.cinema-panel:nth-child(2) img,
.cinema-panel:nth-child(2) video { animation-delay: -3s; }
.cinema-panel:nth-child(3) img,
.cinema-panel:nth-child(3) video { animation-delay: -6s; }
.cinema-panel:nth-child(4) img,
.cinema-panel:nth-child(4) video { animation-delay: -9s; }
@keyframes cinemaDrift {
  from { transform: scale(1.04) translateX(-1.2%); }
  to { transform: scale(1.1) translateX(1.2%); }
}
.cinema-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.04) 38%, #070707 73%, #070707 100%),
    linear-gradient(90deg, rgba(0,0,0,.36), transparent 25%, transparent 75%, rgba(0,0,0,.22));
  pointer-events: none;
}
.cinema-label,
.scroll-down {
  position: absolute;
  z-index: 7;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.4);
  padding: 4px 8px;
  font-family: var(--f-sans);
  font-size: 11px;
  line-height: 1.2;
  background: rgba(0,0,0,.28);
}
.cinema-label { display: none; }
.scroll-down {
  right: 42px;
  top: 638px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: transparent;
  border-color: rgba(255,255,255,.24);
  background: rgba(0,0,0,.12);
  display: none;
}
.scroll-down span {
  color: rgba(255,255,255,.78);
  font-size: 28px;
  line-height: 1.5;
}
.cinema-copy {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 245px;
  transform: translateX(-50%);
  text-align: center;
}
.cinema-title {
  display: inline-grid;
  justify-items: center;
  margin: 0;
  font-size: clamp(48px, 6.3vw, 92px);
  line-height: 1.16;
  text-shadow: 0 12px 38px rgba(0,0,0,.82);
}
.cinema-title .line-1 {
  font-size: .47em;
  letter-spacing: -.02em;
}
.cinema-title .line-3 {
  white-space: nowrap;
}
.cinema-title .marker-block::after {
  display: none;
}
.cinema-sub {
  margin-top: 16px;
  font-size: clamp(24px, 2.6vw, 38px);
  text-shadow: 0 10px 30px rgba(0,0,0,.8);
}
.cinema-sub b { color: var(--c-highlight); }
.cinema-player {
  position: relative;
  z-index: 6;
  margin-top: -154px;
}
.cinema-controls {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto auto;
  gap: 14px;
  align-items: center;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 3px 10px rgba(0,0,0,.8);
}
.play-icon { font-size: 20px; }
.cinema-time { font-size: 13px; }
.cinema-bar {
  height: 5px;
  background: rgba(255,255,255,.28);
  position: relative;
}
.cinema-bar::after {
  content: "";
  position: absolute;
  left: 30%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.cinema-bar i {
  display: block;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent), #ff4b4c);
}
.cinema-icon { opacity: .9; }
.cinema-chapters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.chapter {
  display: grid;
  grid-template-columns: 86px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 10px;
  color: #fff;
  opacity: .78;
  padding: 8px;
  border: 1px solid transparent;
  background: rgba(255,255,255,.06);
}
.chapter.is-active {
  opacity: 1;
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.12);
}
.chapter img {
  grid-row: 1 / 3;
  width: 86px;
  height: 50px;
  object-fit: cover;
}
.chapter b { font-size: 12px; }
.chapter small { color: rgba(255,255,255,.64); font-size: 10px; }
.cinema-chapters::after {
  content: "";
  grid-column: 1 / -1;
  height: 2px;
  margin: 10px 11% 0;
  background:
    radial-gradient(circle, var(--c-highlight) 0 4px, transparent 5px) 0 50% / 25% 100% repeat-x,
    linear-gradient(90deg, var(--c-highlight), rgba(255,255,255,.3));
}
.cinema-action {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 30px;
}
.cinema-action .hero-btn {
  min-width: 360px;
  min-height: 68px;
  font-size: 19px;
}

.video-panel-page .cinema-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, transparent 0 66%, rgba(0,0,0,.36) 100%);
  mix-blend-mode: soft-light;
}
.video-panel-page .cinema-title {
  text-shadow: 0 14px 42px rgba(0,0,0,.92), 0 0 2px rgba(0,0,0,.8);
}

.video-film-page .cinema-hero {
  min-height: 820px;
}
.video-film-page .cinema-grid {
  display: block;
  height: 590px;
  overflow: hidden;
  background: #050505;
}
.film-hero-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.08) brightness(.82);
  transform: scale(1.03);
  animation: filmBreath 13s ease-in-out infinite alternate;
}
@keyframes filmBreath {
  from { transform: scale(1.03) translateY(0); }
  to { transform: scale(1.09) translateY(-1.2%); }
}
.film-letterbox {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  height: 58px;
  background: rgba(0,0,0,.88);
  pointer-events: none;
}
.film-letterbox.top { top: 0; }
.film-letterbox.bottom { top: 532px; }
.film-story-beats {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  bottom: 26px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,.78);
  font-family: var(--f-serif);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  display: none;
}
.film-story-beats span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.film-story-beats span::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(215,173,74,.72);
}
.video-film-page .cinema-scrim {
  background:
    radial-gradient(circle at 50% 42%, rgba(0,0,0,.05), rgba(0,0,0,.32) 54%, rgba(0,0,0,.78) 100%),
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.04) 45%, #070707 80%, #070707 100%);
}
.video-film-page .cinema-copy {
  top: 220px;
}
.video-film-page .cinema-title {
  text-shadow: 0 16px 50px rgba(0,0,0,.96), 0 0 3px rgba(0,0,0,.9);
}
.video-film-page .cinema-player {
  margin-top: -118px;
}
.video-film-page .chapter {
  background: rgba(0,0,0,.46);
  backdrop-filter: blur(10px);
}

.video-yoom-page {
  background: #f3f5f6;
  color: #1d232b;
}
.video-yoom-page .hero {
  background: #f3f5f6;
}
.video-yoom-page .hero-topbar {
  color: #1d232b;
  background: rgba(243,245,246,.84);
  border-bottom: 1px solid rgba(28,35,43,.08);
  backdrop-filter: blur(18px);
}
.video-yoom-page .hero-nav a {
  color: rgba(28,35,43,.82);
}
.video-yoom-page .hero-brand-text,
.video-yoom-page .hero-brand-text b {
  color: #1d232b;
}
.video-yoom-page .live-pill {
  color: #fff;
  background: #1d232b;
  box-shadow: 0 16px 34px rgba(29,35,43,.18);
}
.yoom-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #e9eef2;
  color: #1d232b;
  padding: 88px 0 54px;
}
.yoom-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(42rem 30rem at 18% 42%, rgba(214,179,92,.26), transparent 62%),
    radial-gradient(38rem 34rem at 78% 30%, rgba(211,32,34,.15), transparent 66%),
    linear-gradient(158deg, transparent 0 34%, rgba(255,255,255,.76) 34% 47%, transparent 47% 100%),
    #edf1f4;
}
.yoom-hero-bg::before,
.yoom-hero-bg::after {
  content: "";
  position: absolute;
  width: 64vw;
  height: 34vw;
  min-width: 720px;
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  transform: rotate(-17deg);
  animation: yoomFloat 8s ease-in-out infinite alternate;
}
.yoom-hero-bg::before {
  left: -14vw;
  bottom: -5vw;
}
.yoom-hero-bg::after {
  right: -18vw;
  bottom: 2vw;
  opacity: .72;
  animation-delay: -2.4s;
}
.yoom-hero-inner {
  position: relative;
  min-height: 680px;
}
.yoom-copy {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  animation: yoomRise .72s cubic-bezier(.2,.8,.2,1) both;
}
.yoom-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #a57218;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.yoom-kicker::before,
.yoom-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .45;
}
.yoom-title {
  margin: 0;
  color: #1c222a;
  font-size: clamp(44px, 6.1vw, 92px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.yoom-title span {
  display: block;
  font-size: .64em;
  font-weight: 900;
}
.yoom-title strong {
  display: block;
  color: #10151b;
  font-weight: 900;
}
.yoom-sub {
  margin: 22px 0 0;
  color: rgba(28,35,43,.78);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
}
.yoom-sub b {
  color: #b7811d;
}
.yoom-command {
  position: relative;
  z-index: 6;
  width: min(720px, calc(100% - 320px));
  min-height: 194px;
  margin: 34px auto 0;
  padding: 28px 94px 28px 34px;
  border: 1px solid rgba(28,35,43,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 26px 80px rgba(42,54,68,.16), inset 0 1px 0 rgba(255,255,255,.9);
  animation: yoomRise .82s cubic-bezier(.2,.8,.2,1) .12s both;
}
.yoom-command-label {
  display: block;
  margin-bottom: 16px;
  color: #1d232b;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 900;
}
.yoom-command p {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(76,87,99,.82);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  animation: yoomType 2.8s steps(29, end) .45s both;
}
.yoom-command p::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  vertical-align: -.14em;
  background: #b7811d;
  animation: yoomCaret .8s steps(1, end) infinite;
}
.yoom-mic,
.yoom-send {
  position: absolute;
  right: 68px;
  bottom: 42px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: rgba(28,35,43,.46);
  background: #f1f3f5;
}
.yoom-send {
  right: 24px;
  color: #fff;
  background: #d32022;
  box-shadow: 0 10px 22px rgba(211,32,34,.24);
}
.yoom-app-orbit {
  position: absolute;
  z-index: 4;
  inset: 150px 0 auto 0;
  pointer-events: none;
}
.app-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #1d232b;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(28,35,43,.08);
  box-shadow: 0 18px 42px rgba(42,54,68,.14);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 900;
  animation: yoomBubble 5.4s ease-in-out infinite;
}
.app-bubble::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  border: 2px solid rgba(215,173,74,.36);
}
.b1 { left: 4%; top: 74px; animation-delay: -.4s; }
.b2 { left: 13%; top: 22px; animation-delay: -1.6s; }
.b3 { left: 22%; top: 106px; animation-delay: -2.5s; }
.b4 { right: 24%; top: 26px; animation-delay: -.9s; }
.b5 { right: 14%; top: 112px; animation-delay: -2.1s; }
.b6 { right: 5%; top: 52px; animation-delay: -3.2s; }
.b7 { left: 17%; top: 168px; animation-delay: -3.9s; }
.yoom-flow-stack {
  position: absolute;
  z-index: 6;
  right: clamp(16px, 4vw, 46px);
  top: 272px;
  display: grid;
  gap: 14px;
  width: min(280px, 27vw);
}
.flow-pill {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 16px 42px rgba(42,54,68,.13);
  color: #1d232b;
  font-family: var(--f-sans);
  font-weight: 900;
  opacity: 0;
  transform: translateX(26px);
  animation: yoomFlowIn .66s cubic-bezier(.2,.8,.2,1) both;
}
.flow-pill:nth-child(2) { animation-delay: .28s; }
.flow-pill:nth-child(3) { animation-delay: .46s; }
.flow-pill b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: #d32022;
}
.flow-pill span {
  font-size: 13px;
  line-height: 1.35;
}
.yoom-agent-card {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 12px;
  width: min(560px, 48vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.88);
  border-radius: 28px;
  background: #111;
  box-shadow: 0 30px 90px rgba(42,54,68,.2);
  transform: translateX(-50%);
  animation: yoomCardFloat 6.4s ease-in-out infinite;
}
.yoom-agent-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}
.yoom-agent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.72));
}
.agent-card-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  color: #fff;
}
.agent-card-copy span {
  color: #e6bf68;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}
.agent-card-copy b {
  font-size: clamp(18px, 2vw, 26px);
}
.yoom-hero-action {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: -18px;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translateX(-50%);
}
.video-yoom-page .hero-trust-row {
  background: #10151b;
  border-top: 0;
}
.video-yoom-page .hero-cta-band {
  background: #fff;
}
@keyframes yoomRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes yoomType {
  from { width: 0; }
  to { width: min(100%, 32em); }
}
@keyframes yoomCaret {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}
@keyframes yoomFloat {
  from { transform: rotate(-17deg) translateY(0); }
  to { transform: rotate(-17deg) translateY(-22px); }
}
@keyframes yoomBubble {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-18px,0) scale(1.03); }
}
@keyframes yoomFlowIn {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes yoomCardFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-1deg); }
  50% { transform: translateX(-50%) translateY(-16px) rotate(1deg); }
}
@keyframes yoomCardFloatMobile {
  0%, 100% { transform: translateY(0) rotate(-.7deg); }
  50% { transform: translateY(-10px) rotate(.7deg); }
}

.hero-trust-row {
  background:
    radial-gradient(circle at 50% 0%, rgba(215,173,74,.25), transparent 30rem),
    #090b0c;
  padding: 30px 0 20px;
}
.hero-trust-row::before {
  content: none;
  position: absolute;
  left: 28px;
  top: 10px;
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.76);
  padding: 3px 7px;
  font-size: 11px;
}
.hero-trust-inner {
  max-width: 980px;
}
.hero-trust-inner.reveal-stagger > * {
  opacity: 1;
  transform: none;
}
.trust-card {
  min-height: 148px;
  border: 0;
  border-right: 1px solid rgba(215,173,74,.42);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.trust-card-lbl { color: rgba(255,255,255,.88); }
.trust-card:last-child { border-right: 0; }
.trust-card-val {
  color: #e6bf68;
  text-shadow: 0 0 24px rgba(215,173,74,.28);
  font-size: clamp(52px, 5.5vw, 80px);
  gap: 6px;
  white-space: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
}
.trust-card-val i { white-space: nowrap; }
.trust-card-sub {
  color: rgba(255,255,255,.7);
}
.hero-cta-band {
  background: #f4f0e8;
  padding: 24px 0;
  border-bottom: 1px solid rgba(21,18,14,.18);
}
.hero-cta-band-inner {
  max-width: 1040px;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.hero-cta-band .cta-band-arrow { display: none; }
.cta-band-text {
  padding: 0 46px;
  border-right: 1px solid rgba(21,18,14,.25);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.45;
}
.cta-band-text::before,
.cta-band-row::before {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 6px;
  border-radius: 50%;
  color: #fff;
  background: #bd9141;
  display: grid;
  place-items: center;
}
.cta-band-text::before { content: "▦"; }
.cta-band-row::before { content: "◇"; }
.cta-band-row {
  grid-column: auto;
  margin-top: 0;
  padding: 0 46px;
  line-height: 1.45;
}
.cta-band-row .btn-cta,
.cta-band-row .cta-band-foot { display: none; }
.cta-band-pill {
  color: var(--c-fg);
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.45;
}
.hero-cta-band-line {
  background: #f4f0e8 !important;
}
.hero-cta-band-line .cta-band-pill {
  color: var(--c-fg) !important;
  background: transparent !important;
}

.problems {
  background: #f7f3eb;
  padding-top: 64px;
}
.problems::before {
  content: none;
  position: absolute;
  left: 28px;
  top: 44px;
  border: 1px solid rgba(21,18,14,.35);
  color: rgba(21,18,14,.65);
  padding: 3px 7px;
  font-size: 11px;
}
.problems .sec-title {
  font-size: clamp(34px, 4vw, 52px);
}
.prob-list {
  max-width: 1120px;
  grid-template-columns: repeat(5, 1fr);
}
.prob {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 22px 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}
.prob-num { display: none; }
.prob-check {
  width: 34px;
  height: 34px;
  background: var(--c-accent);
}
.prob-text {
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.8;
}
.prob-cta { display: none; }

.overview {
  color: #fff;
  background:
    linear-gradient(rgba(6,8,8,.86), rgba(6,8,8,.88)),
    url("/assets/images/hero-scene-03.png") center / cover;
}
.overview::before {
  content: none;
  position: absolute;
  left: 28px;
  top: 24px;
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.76);
  padding: 3px 7px;
  font-size: 11px;
}
.overview .sec-title,
.overview .sec-lead,
.overview .ovw-svc-title { color: #fff; }
.overview .sec-lead { color: rgba(255,255,255,.82); }
.overview .ovw-stats { display: none; }
.ovw-svc-grid {
  max-width: 1050px;
  margin: 0 auto;
}
.ovw-svc {
  min-height: 230px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  border-color: rgba(255,255,255,.55);
  background: #111;
}
.ovw-svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.75)), var(--svc-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.ovw-svc:nth-child(1) { --svc-bg: url("/assets/images/hero-scene-04.png"); }
.ovw-svc:nth-child(2) { --svc-bg: url("/assets/images/hero-scene-02.png"); }
.ovw-svc:nth-child(3) { --svc-bg: url("/assets/images/hero-scene-03.png"); }
.ovw-svc:nth-child(4) { --svc-bg: url("/assets/images/hero-scene-01.png"); }
.ovw-svc > * {
  position: relative;
  z-index: 1;
}
.ovw-svc-num { display: none; }
.ovw-svc-icon {
  margin: 0 auto 16px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.ovw-svc-title-c {
  text-align: center;
  font-family: var(--f-serif);
  font-size: 21px;
}
.ovw-svc-desc { display: none; }

.reasons {
  color: var(--c-fg);
  background: #fffaf3;
}
.reasons::before {
  content: none;
  position: absolute;
  left: 28px;
  top: 24px;
  border: 1px solid rgba(21,18,14,.35);
  color: rgba(21,18,14,.65);
  padding: 3px 7px;
  font-size: 11px;
}
.reasons .sec-title,
.reasons .rsn-lead,
.reasons .rsn-text {
  color: var(--c-fg);
}
.rsn-list {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}
.rsn {
  display: block;
  min-height: 220px;
  padding: 28px 26px;
  text-align: center;
  color: var(--c-fg);
  border-color: rgba(21,18,14,.12);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.1);
}
.rsn-visual {
  min-height: 64px;
  margin-bottom: 12px;
}
.rsn-ill-svg,
.rsn-tag,
.rsn-sub,
.rsn-text,
.rsn-bullets { display: none; }
.rsn-no {
  position: static;
  text-align: left;
}
.rsn-no small { display: none; }
.rsn-no b {
  color: rgba(21,18,14,.18);
  font-size: 54px;
}
.rsn-lead {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.5vw, 32px);
}

.proc,
.process {
  background: #111;
}
.proc::before,
.process::before {
  content: none;
  position: absolute;
  left: 28px;
  top: 24px;
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.76);
  padding: 3px 7px;
  font-size: 11px;
}
.proc-list,
.proc-grid {
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  overflow-x: auto;
  padding-bottom: 10px;
}
.proc-card {
  min-height: 190px;
  color: #fff;
  border-color: rgba(215,173,74,.65);
  background:
    linear-gradient(rgba(0,0,0,.46), rgba(0,0,0,.72)),
    url("/assets/images/hero-scene-02.png") center / cover;
}
.proc-item:nth-child(2) .proc-card { background-image: linear-gradient(rgba(0,0,0,.46), rgba(0,0,0,.72)), url("/assets/images/hero-scene-01.png"); }
.proc-item:nth-child(3) .proc-card { background-image: linear-gradient(rgba(0,0,0,.46), rgba(0,0,0,.72)), url("/assets/images/hero-scene-03.png"); }
.proc-item:nth-child(4) .proc-card { background-image: linear-gradient(rgba(0,0,0,.46), rgba(0,0,0,.72)), url("/assets/images/hero-scene-04.png"); }
.proc-card-title,
.proc-title,
.proc-desc { color: #fff; }

@media (max-width: 980px) {
  .cinema-hero { min-height: 900px; }
  .cinema-grid {
    height: 480px;
    grid-template-columns: repeat(2, 1fr);
  }
  .cinema-copy {
    top: 170px;
  }
  .cinema-player {
    margin-top: -70px;
  }
  .cinema-chapters,
  .prob-list,
  .rsn-list {
    grid-template-columns: 1fr 1fr;
  }
  .hero-cta-band-inner {
    grid-template-columns: 1fr;
  }
  .cta-band-text {
    padding-right: 0;
    border-right: 0;
  }
  .video-film-page .cinema-grid {
    height: 500px;
  }
  .video-film-page .cinema-player {
    margin-top: -90px;
  }
  .yoom-command {
    width: min(760px, calc(100% - 48px));
  }
  .yoom-flow-stack {
    top: 292px;
    width: 250px;
  }
  .film-letterbox {
    height: 42px;
  }
  .film-letterbox.bottom {
    top: 458px;
  }
  .film-story-beats {
    display: none;
  }
}

@media (max-width: 640px) {
  .cinema-hero {
    min-height: 870px;
    padding-bottom: 40px;
  }
  .cinema-grid {
    height: 360px;
    grid-template-columns: 1fr 1fr;
  }
  .cinema-label,
  .scroll-down,
  .cinema-icon,
  .cinema-time { display: none; }
  .cinema-copy {
    top: 150px;
    text-align: left;
  }
  .cinema-title {
    justify-items: start;
    font-size: clamp(34px, 10vw, 44px);
  }
  .cinema-title .line-3 { white-space: normal; }
  .cinema-sub { font-size: 19px; }
  .cinema-player { margin-top: -20px; }
  .cinema-controls { grid-template-columns: auto 1fr; }
  .cinema-chapters,
  .prob-list,
  .rsn-list {
    grid-template-columns: 1fr;
  }
  .chapter { grid-template-columns: 70px 1fr; }
  .chapter img { width: 70px; height: 42px; }
  .cinema-action .hero-btn {
    min-width: 0;
    width: 100%;
    font-size: 14px;
  }
  .hero-trust-row::before,
  .problems::before,
  .overview::before,
  .reasons::before,
  .proc::before,
  .process::before { display: none; }
  .video-film-page .cinema-hero {
    min-height: 860px;
  }
  .video-yoom-page .hero-nav,
  .video-yoom-page .hero-topbar-right {
    display: none;
  }
  .yoom-hero {
    min-height: 1120px;
    padding: 92px 0 42px;
  }
  .yoom-hero-inner {
    min-height: 980px;
  }
  .yoom-copy {
    text-align: left;
  }
  .yoom-kicker {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: .13em;
  }
  .yoom-kicker::before,
  .yoom-kicker::after {
    width: 28px;
  }
  .yoom-title {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.12;
  }
  .yoom-title span {
    font-size: .58em;
  }
  .yoom-sub {
    margin-top: 18px;
    font-size: 23px;
    line-height: 1.35;
  }
  .yoom-command {
    width: 100%;
    min-height: 186px;
    margin-top: 28px;
    padding: 24px 22px 74px;
    border-radius: 22px;
  }
  .yoom-command-label {
    font-size: 13px;
  }
  .yoom-command p {
    width: auto;
    max-width: none;
    white-space: normal;
    font-size: 18px;
    line-height: 1.55;
    animation: none;
  }
  .yoom-command p::after {
    display: none;
  }
  .yoom-flow-stack {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin: 22px 0 0;
    gap: 10px;
  }
  .flow-pill {
    grid-template-columns: 44px 1fr;
    min-height: 64px;
    border-radius: 24px;
    transform: translateY(18px);
  }
  .flow-pill span {
    font-size: 13px;
  }
  .yoom-agent-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 24px auto 0;
    border-width: 6px;
    border-radius: 22px;
    transform: none;
    animation: yoomCardFloatMobile 6.4s ease-in-out infinite;
  }
  .yoom-hero-action {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
    transform: none;
  }
  .yoom-hero-action .hero-btn {
    width: 100%;
    min-width: 0;
  }
  .yoom-app-orbit {
    inset: 330px 0 auto 0;
  }
  .app-bubble {
    width: 54px;
    height: 54px;
    font-size: 12px;
    opacity: .82;
  }
  .b1 { left: -1%; top: 28px; }
  .b2 { left: 10%; top: -36px; }
  .b3 { left: 19%; top: 92px; }
  .b4 { right: 26%; top: -18px; }
  .b5 { right: 0; top: 46px; }
  .b6 { right: 12%; top: 130px; }
  .b7 { left: 5%; top: 142px; }
  .video-film-page .cinema-grid {
    height: 380px;
  }
  .video-film-page .film-hero-bg {
    object-position: center;
  }
  .video-film-page .cinema-copy {
    top: 148px;
  }
  .video-film-page .cinema-player {
    margin-top: -26px;
  }
  .film-letterbox {
    height: 28px;
  }
  .film-letterbox.bottom {
    top: 352px;
  }
}

/* ============================================================
   Variant 3: Yoom-inspired remake
   ============================================================ */
.y3-page {
  margin: 0;
  color: #20262d;
  background: #f4f7fa;
  font-family: var(--f-sans);
  overflow-x: hidden;
}
.y3-page * { box-sizing: border-box; }
.y3-page a { color: inherit; text-decoration: none; }
.y3-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  height: 74px;
  padding: 0 clamp(22px, 4vw, 56px);
  background: rgba(244,247,250,.88);
  border-bottom: 1px solid rgba(25,31,38,.08);
  backdrop-filter: blur(18px);
}
.y3-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
}
.y3-logo img { width: 34px; height: 34px; object-fit: contain; }
.y3-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  font-size: 14px;
  font-weight: 900;
}
.y3-actions { display: flex; align-items: center; gap: 10px; }
.y3-btn,
.y3-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.y3-btn-light { background: #fff; box-shadow: 0 8px 24px rgba(30,38,48,.1); }
.y3-btn-dark { color: #fff !important; background: #20262d; box-shadow: 0 12px 28px rgba(30,38,48,.18); }
.y3-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 78px 0 0;
  background: #edf2f6;
}
.y3-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 36%, rgba(255,212,64,.26), transparent 22rem),
    radial-gradient(circle at 78% 30%, rgba(255,117,179,.2), transparent 26rem),
    linear-gradient(180deg, #eef3f7 0%, #f7fafc 100%);
}
.y3-wave {
  position: absolute;
  width: 80vw;
  height: 26vw;
  min-width: 880px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  transform: rotate(-16deg);
  animation: y3Wave 7s ease-in-out infinite alternate;
}
.y3-wave-a { left: -20vw; top: 370px; }
.y3-wave-b { right: -26vw; top: 450px; opacity: .78; animation-delay: -2.2s; }
.y3-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1f8cff;
  animation: y3Float 5.4s ease-in-out infinite;
}
.y3-dot-a { left: 22%; top: 360px; background: #ffd53d; }
.y3-dot-b { right: 18%; top: 480px; background: #13b7d6; animation-delay: -1.8s; }
.y3-dot-c { left: 72%; top: 340px; background: #f34281; animation-delay: -3s; }
.y3-hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  min-height: 728px;
  margin: 0 auto;
}
.y3-hero-kicker {
  margin: 0 0 22px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
}
.y3-title {
  margin: 0;
  text-align: center;
  color: #20262d;
  font-size: clamp(54px, 5.7vw, 78px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}
.y3-sp { display: none; }
.y3-prompt {
  position: relative;
  z-index: 8;
  width: min(720px, calc(100% - 270px));
  min-height: 198px;
  margin: 34px auto 0;
  padding: 36px 118px 36px 36px;
  border: 1px solid rgba(29,36,44,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(36,47,60,.14);
  animation: y3Rise .7s ease both .14s;
}
.y3-prompt::before {
  content: "どんな副業を始めたいですか？";
  display: block;
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 900;
}
.y3-prompt-text {
  width: 0;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  color: #8b95a1;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 900;
  white-space: nowrap;
  animation: y3Typing 2.7s steps(29, end) .55s forwards;
}
.y3-prompt-text::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 5px;
  background: #1d8dd8;
  vertical-align: -.14em;
  animation: y3Blink .78s steps(1, end) infinite;
}
.y3-prompt-mic,
.y3-prompt-send {
  position: absolute;
  right: 70px;
  bottom: 42px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #7b8794;
  background: #f2f5f7;
  font-weight: 900;
}
.y3-prompt-send { right: 24px; color: #20262d; }
.y3-left-bubbles {
  position: absolute;
  inset: 210px auto auto 0;
  z-index: 5;
  width: 310px;
  height: 300px;
}
.y3-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(29,36,44,.08);
  box-shadow: 0 14px 38px rgba(36,47,60,.12);
  font-size: 14px;
  font-weight: 900;
  animation: y3Float 5.6s ease-in-out infinite;
}
.y3-bubble::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  border: 3px solid #34c6e0;
  opacity: .28;
}
.y3-b1 { left: 0; top: 58px; color: #e7a800; }
.y3-b2 { left: 94px; top: 4px; color: #1f8cff; animation-delay: -1s; }
.y3-b3 { left: 182px; top: 88px; color: #f34281; animation-delay: -2s; }
.y3-b4 { left: 88px; top: 158px; color: #4a53d8; animation-delay: -3s; }
.y3-b5 { left: 224px; top: 10px; color: #1a9d70; animation-delay: -2.5s; }
.y3-b6 { left: 18px; top: 176px; color: #ff7b2f; animation-delay: -1.5s; }
.y3-b7 { left: 200px; top: 190px; color: #20262d; animation-delay: -3.6s; }
.y3-task-stack {
  position: absolute;
  right: 0;
  top: 254px;
  z-index: 6;
  display: grid;
  gap: 18px;
  width: 300px;
}
.y3-task-stack::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 32px;
  bottom: 32px;
  width: 4px;
  border-radius: 99px;
  background: #1f8cff;
}
.y3-task {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 10px 22px 10px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 38px rgba(36,47,60,.11);
  opacity: 0;
  transform: translateX(28px);
  animation: y3TaskIn .64s ease forwards;
}
.y3-task:nth-child(2) { animation-delay: .2s; }
.y3-task:nth-child(3) { animation-delay: .38s; }
.y3-task b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: #e9232e;
  font-size: 17px;
}
.y3-task span { font-size: 14px; font-weight: 900; }
.y3-characters {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(4px, 1vw, 14px);
  width: min(700px, 70vw);
  height: 286px;
  transform: translateX(-50%);
}
.y3-character {
  position: relative;
  display: grid;
  place-items: center;
  width: 142px;
  height: 190px;
  border-radius: 58% 48% 54% 45% / 48% 52% 44% 56%;
  box-shadow: inset 0 -18px 34px rgba(0,0,0,.08), 0 20px 40px rgba(29,36,44,.12);
  filter: drop-shadow(0 10px 10px rgba(29,36,44,.08));
  animation: y3Character 4.6s ease-in-out infinite;
}
.y3-character::before,
.y3-character::after {
  content: "";
  position: absolute;
  bottom: -22px;
  width: 34px;
  height: 54px;
  border-radius: 999px;
  background: inherit;
}
.y3-character::before { left: 32px; }
.y3-character::after { right: 32px; }
.y3-yellow { width: 160px; height: 230px; background: #ffd33d; }
.y3-pink { background: #ff74c8; animation-delay: -.8s; }
.y3-blue { background: #20a8ff; animation-delay: -1.5s; }
.y3-green { width: 160px; height: 232px; background: #30d783; animation-delay: -2.2s; }
.y3-character .face {
  position: relative;
  z-index: 2;
  color: #20262d;
  font-size: 46px;
  font-weight: 900;
}
.y3-character .arm {
  position: absolute;
  width: 38px;
  height: 118px;
  border-radius: 999px;
  background: inherit;
}
.y3-character .arm.left { left: -14px; top: -32px; transform: rotate(-24deg); }
.y3-character .arm.right { right: -16px; top: -28px; transform: rotate(25deg); }
.y3-video-card {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 7;
  width: min(450px, 42vw);
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.86);
  border-radius: 24px;
  background: #111;
  box-shadow: 0 24px 70px rgba(29,36,44,.22);
  transform: translateX(-50%);
}
.y3-video-card video { width: 100%; height: 100%; object-fit: cover; }
.y3-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.72));
}
.y3-video-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
  color: #fff;
}
.y3-video-copy span { color: #ffd33d; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.y3-video-copy b { font-size: 17px; }
.y3-proof-strip {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(1320px, calc(100% - 42px));
  margin: -12px auto 0;
  padding: 26px 32px;
  border-radius: 38px 38px 0 0;
  background: #fff;
  box-shadow: 0 -16px 40px rgba(29,36,44,.08);
}
.y3-proof-strip div {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 74px;
  align-content: center;
}
.y3-proof-strip b {
  color: #20262d;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 900;
  white-space: nowrap;
}
.y3-proof-strip span { color: #6e7883; font-size: 13px; font-weight: 900; }
.y3-purple,
.y3-section,
.y3-flow-section,
.y3-final {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.y3-purple.is-visible,
.y3-section.is-visible,
.y3-flow-section.is-visible,
.y3-final.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.y3-purple {
  width: min(1320px, calc(100% - 42px));
  margin: 72px auto 0;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 77% 54%, rgba(255,255,255,.26), transparent 19rem),
    radial-gradient(circle at 67% 50%, rgba(255,255,255,.14), transparent 29rem),
    #7837ff;
  color: #fff;
}
.y3-section-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
  align-items: center;
  gap: 44px;
  min-height: 540px;
  padding: clamp(48px, 7vw, 92px);
}
.y3-purple-copy { display: grid; gap: 26px; }
.y3-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: #eb4aaa;
  background: #fff2fb;
  font-size: 14px;
  font-weight: 900;
}
.y3-purple h2,
.y3-section-head h2,
.y3-final h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}
.y3-purple p,
.y3-final p {
  margin: 0;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 800;
}
.y3-orbit-diagram { position: relative; min-height: 430px; }
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.22);
}
.ring-a { inset: 22px 42px 34px 40px; }
.ring-b { inset: 76px 96px 88px 94px; }
.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  color: #20262d;
  background: #ff7bd0;
  border: 8px solid #fff;
  font-size: 36px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 34px rgba(0,0,0,.13);
}
.orbit-item,
.orbit-tag {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 104px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #20262d;
  background: rgba(255,255,255,.9);
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0,0,0,.13);
  animation: y3Float 5.2s ease-in-out infinite;
}
.item-a { left: 10%; top: 21%; }
.item-b { right: 12%; top: 17%; animation-delay: -1s; }
.item-c { left: 5%; bottom: 18%; animation-delay: -2s; }
.item-d { right: 8%; bottom: 15%; animation-delay: -3s; }
.orbit-tag { min-height: 42px; color: #0a80e8; font-size: 14px; }
.tag-a { left: 42%; top: 3%; }
.tag-b { left: 38%; bottom: 2%; animation-delay: -1.5s; }
.y3-section,
.y3-flow-section {
  width: min(1120px, calc(100% - 42px));
  margin: 100px auto 0;
}
.y3-section-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}
.y3-section-head span {
  color: #0a80e8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.y3-section-head h2 { color: #20262d; font-size: clamp(34px, 4.2vw, 56px); }
.y3-check-grid,
.y3-card-row,
.y3-flow-cards {
  display: grid;
  gap: 18px;
}
.y3-check-grid { grid-template-columns: repeat(4, 1fr); }
.y3-check-grid article,
.y3-card-row article,
.y3-flow-cards article {
  min-height: 154px;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(29,36,44,.08);
}
.y3-check-grid b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: #e9232e;
}
.y3-check-grid p,
.y3-card-row p,
.y3-flow-cards p {
  margin: 0;
  color: #4a5562;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 800;
}
.y3-card-row { grid-template-columns: repeat(3, 1fr); }
.y3-card-row article { min-height: 238px; }
.y3-card-row em {
  display: block;
  margin-bottom: 24px;
  color: #d8dde4;
  font-size: 44px;
  font-style: normal;
  font-weight: 900;
}
.y3-card-row h3,
.y3-flow-cards h3 {
  margin: 0 0 14px;
  color: #20262d;
  font-size: 24px;
  line-height: 1.3;
}
.y3-flow-section { width: min(1240px, calc(100% - 42px)); }
.y3-flow-cards { grid-template-columns: repeat(4, 1fr); }
.y3-flow-cards article { position: relative; overflow: hidden; background: #fff; }
.y3-flow-cards article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f1f4f7;
}
.y3-flow-cards b { display: block; margin-bottom: 24px; color: #0a80e8; font-size: 32px; }
.y3-final {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 42px));
  margin: 110px auto;
  padding: 48px;
  border-radius: 34px;
  color: #fff;
  background: #20262d;
  box-shadow: 0 20px 60px rgba(29,36,44,.16);
}
.y3-final h2 { margin-top: 18px; font-size: clamp(34px, 4.8vw, 56px); }
.y3-final p { margin-top: 14px; color: rgba(255,255,255,.76); }
.y3-final-btn { min-height: 62px; color: #20262d; background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.16); }
@keyframes y3Wave {
  from { transform: rotate(-16deg) translateY(0); }
  to { transform: rotate(-16deg) translateY(-26px); }
}
@keyframes y3Rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes y3Typing { to { width: 100%; } }
@keyframes y3Blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}
@keyframes y3Float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes y3TaskIn { to { opacity: 1; transform: translateX(0); } }
@keyframes y3Character {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
@media (max-width: 980px) {
  .y3-header { grid-template-columns: 1fr auto; }
  .y3-nav { display: none; }
  .y3-hero { min-height: 1040px; }
  .y3-prompt { width: min(720px, 100%); }
  .y3-left-bubbles { top: 300px; transform: scale(.86); transform-origin: left top; }
  .y3-task-stack { top: 365px; width: 270px; }
  .y3-characters { bottom: 70px; width: 86vw; }
  .y3-video-card { bottom: 42px; width: min(430px, 68vw); }
  .y3-section-inner,
  .y3-final { grid-template-columns: 1fr; }
  .y3-check-grid,
  .y3-flow-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .y3-header { height: 62px; padding: 0 18px; }
  .y3-logo span { font-size: 20px; }
  .y3-actions { display: none; }
  .y3-hero { min-height: 1040px; padding-top: 70px; }
  .y3-hero-inner {
    width: min(100% - 32px, 420px);
    min-height: 875px;
  }
  .y3-hero-kicker { text-align: left; font-size: 13px; }
  .y3-title { text-align: left; font-size: 48px; }
  .y3-title { white-space: normal; }
  .y3-sp { display: block; }
  .y3-prompt {
    min-height: 190px;
    margin-top: 28px;
    padding: 24px 22px 72px;
  }
  .y3-prompt::before { margin-bottom: 14px; font-size: 13px; }
  .y3-prompt-text {
    width: auto;
    white-space: normal;
    font-size: 18px;
    line-height: 1.55;
    animation: none;
  }
  .y3-prompt-text::after { display: none; }
  .y3-prompt-mic { right: 72px; bottom: 20px; }
  .y3-prompt-send { bottom: 20px; }
  .y3-left-bubbles {
    inset: 338px auto auto -10px;
    width: 260px;
    transform: scale(.74);
  }
  .y3-task-stack {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 24px;
    gap: 10px;
  }
  .y3-task-stack::before { display: none; }
  .y3-task {
    min-height: 62px;
    border-radius: 24px;
    transform: translateY(20px);
  }
  .y3-task b { width: 44px; height: 44px; }
  .y3-characters {
    bottom: 172px;
    width: 112vw;
    height: 160px;
    gap: 0;
  }
  .y3-character {
    width: 82px;
    height: 120px;
    border-radius: 58% 48% 54% 45% / 48% 52% 44% 56%;
  }
  .y3-yellow,
  .y3-green {
    width: 94px;
    height: 138px;
  }
  .y3-character .face { font-size: 28px; }
  .y3-character .arm { width: 24px; height: 72px; }
  .y3-character::before,
  .y3-character::after {
    width: 21px;
    height: 34px;
    bottom: -14px;
  }
  .y3-character::before { left: 20px; }
  .y3-character::after { right: 20px; }
  .y3-video-card {
    width: 100%;
    bottom: 34px;
    border-radius: 20px;
  }
  .y3-proof-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: calc(100% - 20px);
    padding: 18px 14px;
    border-radius: 24px 24px 0 0;
  }
  .y3-proof-strip div { min-height: 68px; }
  .y3-proof-strip b { font-size: 22px; }
  .y3-proof-strip span { font-size: 11px; }
  .y3-purple,
  .y3-section,
  .y3-flow-section,
  .y3-final {
    width: calc(100% - 24px);
    margin-top: 58px;
  }
  .y3-purple { border-radius: 26px; }
  .y3-section-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 24px;
  }
  .y3-purple h2,
  .y3-section-head h2,
  .y3-final h2 {
    font-size: 34px;
  }
  .y3-purple p,
  .y3-final p { font-size: 16px; }
  .y3-orbit-diagram { min-height: 330px; }
  .orbit-item,
  .orbit-tag {
    min-width: 78px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }
  .orbit-center { width: 92px; height: 92px; }
  .y3-check-grid,
  .y3-card-row,
  .y3-flow-cards { grid-template-columns: 1fr; }
  .y3-final {
    padding: 30px 22px;
    margin-bottom: 70px;
  }
  .y3-final-btn { width: 100%; }
}

/* Final comp implementation: cinematic image-faithful LP */
.hero-topbar {
  background: rgba(0, 0, 0, .88);
}
.hero-topbar-inner {
  min-height: 68px;
}
.hero-nav {
  color: rgba(255, 255, 255, .86);
}
.cinema-hero {
  min-height: 812px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 85% 82%, rgba(215, 173, 74, .14), transparent 26rem),
    #050505;
}
.cinema-main-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-generated-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: .92;
  filter: saturate(.96) contrast(1.08) brightness(.82);
  transform: scale(1.02);
}
.cinema-grid {
  position: relative;
  z-index: 1;
  height: 600px;
  grid-template-columns: 1.08fr .92fr .92fr 1.08fr;
  opacity: .42;
  mix-blend-mode: screen;
}
.cinema-panel video {
  opacity: .95;
  filter: saturate(.93) contrast(1.1) brightness(.9);
}
.cinema-panel:nth-child(1) video { object-position: 52% center; animation-duration: 19s; }
.cinema-panel:nth-child(2) video { object-position: 46% center; animation-duration: 21s; }
.cinema-panel:nth-child(3) video { object-position: 58% center; animation-duration: 20s; }
.cinema-panel:nth-child(4) video { object-position: 54% center; animation-duration: 22s; }
.cinema-scrim {
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.03) 42%, rgba(5,5,5,.84) 76%, #050505 100%),
    linear-gradient(90deg, rgba(0,0,0,.46), rgba(0,0,0,.02) 34%, rgba(0,0,0,.08) 68%, rgba(0,0,0,.42));
}
.cinema-title {
  font-size: clamp(46px, 6.1vw, 88px);
  letter-spacing: -.02em;
}
.cinema-sub {
  color: #fffaf1;
}
.cinema-player {
  margin-top: -135px;
}
.cinema-controls {
  background: rgba(5,5,5,.5);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 0;
  backdrop-filter: blur(10px);
}
.cinema-chapters .chapter {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.cinema-chapters .chapter.is-active {
  border-color: rgba(215,173,74,.88);
  box-shadow: 0 0 0 1px rgba(215,173,74,.18), 0 18px 42px rgba(0,0,0,.42);
}
.hero-trust-row {
  padding-top: 30px;
  background:
    radial-gradient(circle at 4% 15%, rgba(215, 173, 74, .3), transparent 17rem),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .1), transparent 18rem),
    #070909;
}
.trust-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hero-cta-band {
  padding: 22px 0;
  border-bottom: 1px solid rgba(21,18,14,.12);
  background: #f6f1e7;
}
.hero-cta-band-inner {
  grid-template-columns: 1fr;
}
.cta-band-text {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 8vw, 90px);
  align-items: center;
  font-size: clamp(18px, 2.4vw, 27px);
}
.cta-band-line::before,
.cta-band-pill::before {
  content: "";
  width: 54px;
  height: 54px;
  display: inline-block;
  margin-right: 14px;
  vertical-align: middle;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), transparent),
    #bf9142;
}
.cta-band-row {
  display: none;
}

.comp {
  color: #fff;
  background:
    radial-gradient(circle at 4% 18%, rgba(215,173,74,.24), transparent 18rem),
    radial-gradient(circle at 96% 20%, rgba(215,173,74,.18), transparent 18rem),
    #050505;
}
.comp .sec-title,
.comp .sec-lead {
  color: #fff;
}
.comp .sec-lead {
  color: rgba(255,255,255,.76);
}
.comp .eyebrow {
  display: none;
}
.comp .sec-title {
  font-size: clamp(34px, 4vw, 52px);
}
.comp-podium {
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: .72fr 1.12fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
}
.comp-col {
  border: 0;
  border-right: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  color: #fff;
  background: rgba(255,255,255,.035);
  box-shadow: none;
}
.comp-col:last-child {
  border-right: 0;
}
.comp-col-labels {
  background: rgba(255,255,255,.055);
}
.comp-col-us {
  position: relative;
  z-index: 2;
  margin: -18px 0 -18px;
  border: 2px solid rgba(215,173,74,.9);
  background:
    linear-gradient(180deg, rgba(215,173,74,.14), rgba(185,21,22,.2)),
    #11100e;
  transform: none;
  box-shadow: 0 24px 70px rgba(215,173,74,.16);
}
.comp-crown {
  display: none;
}
.comp-col-head,
.comp-label-head,
.comp-col-foot,
.comp-label-foot {
  min-height: 92px;
  padding: 20px 18px;
  text-align: center;
}
.comp-col-name {
  color: #fff;
  font-size: clamp(20px, 2.1vw, 29px);
}
.comp-col-us .comp-col-name,
.comp-col-us .red {
  color: var(--c-highlight);
}
.comp-best {
  width: calc(100% + 36px);
  margin: 0 -18px -10px;
  padding: 10px;
  background: linear-gradient(180deg, #c82022, #8f0d0f);
  color: #fff;
  letter-spacing: .04em;
}
.comp-label-tag,
.comp-col-tag {
  color: rgba(255,255,255,.48);
}
.comp-label-row,
.comp-cell {
  min-height: 76px;
  border-top-color: rgba(255,255,255,.15);
  padding: 16px 18px;
}
.comp-label-row {
  font-family: var(--f-serif);
  font-weight: 900;
}
.comp-label-num {
  display: none;
}
.comp-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: #b7191d;
}
.comp-mark svg {
  width: 16px;
  height: 16px;
}
.comp-mark.bad {
  color: rgba(255,255,255,.42);
  background: transparent;
}
.comp-val {
  color: rgba(255,255,255,.9);
  font-size: 15px;
}
.comp-col-us .comp-val {
  color: #fffaf1;
}
.comp-footnote {
  color: rgba(255,255,255,.56);
  text-align: right;
}

.proc {
  color: var(--c-fg);
  background:
    radial-gradient(circle at 96% 12%, rgba(215,173,74,.2), transparent 16rem),
    #f6f1e7;
}
.proc .sec-title,
.proc .sec-lead {
  color: var(--c-fg);
}
.proc .eyebrow {
  display: none;
}
.proc-list {
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 12px;
  overflow: visible;
}
.proc-item {
  position: relative;
  gap: 0;
}
.proc-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 29px;
  right: -11px;
  width: 18px;
  height: 18px;
  border-top: 2px solid #a87c35;
  border-right: 2px solid #a87c35;
  transform: rotate(45deg);
  z-index: 2;
}
.proc-rail {
  margin-bottom: -24px;
  position: relative;
  z-index: 3;
}
.proc-circle {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255,255,255,.7);
  background: linear-gradient(180deg, #c69b4a, #9b7231);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.proc-circle small {
  display: none;
}
.proc-card {
  position: relative;
  min-height: 245px;
  padding: 132px 14px 18px;
  overflow: hidden;
  text-align: center;
  color: var(--c-fg);
  border: 1px solid rgba(21,18,14,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.78) !important;
  box-shadow: 0 16px 34px rgba(49,33,15,.1);
}
.proc-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 96px;
  border-radius: 6px;
  background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.16)), url("/assets/images/hero-scene-02.png") center / cover;
}
.proc-item:nth-child(1) .proc-card::before { background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.16)), url("/assets/images/hero-scene-03.png"); }
.proc-item:nth-child(2) .proc-card::before { background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.16)), url("/assets/images/hero-scene-02.png"); }
.proc-item:nth-child(3) .proc-card::before { background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.16)), url("/assets/images/hero-scene-01.png"); }
.proc-item:nth-child(4) .proc-card::before { background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.16)), url("/assets/images/hero-scene-03.png"); }
.proc-item:nth-child(5) .proc-card::before { background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.16)), url("/assets/images/hero-scene-04.png"); }
.proc-card-title,
.proc-title,
.proc-desc {
  color: var(--c-fg);
}
.proc-card-title {
  min-height: 44px;
  font-size: 17px;
  line-height: 1.3;
}
.proc-desc {
  margin-bottom: 0;
  font-size: 12px;
}
.proc-meta {
  justify-content: center;
}
.proc-time,
.proc-tag {
  background: #4b4b4b;
  color: #fff;
}

.voices {
  background:
    radial-gradient(circle at 95% 5%, rgba(215,173,74,.22), transparent 16rem),
    #f6f1e7;
}
.voices .eyebrow {
  display: none;
}
.voices-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.voices-banner {
  display: none;
}
.voice {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 8px 18px;
  padding: 24px;
  background: rgba(255,255,255,.86);
}
.voice-no {
  grid-column: 1 / -1;
  color: rgba(185,21,22,.8);
}
.voice-portrait {
  width: 86px;
  height: 86px;
  margin: 0;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
}
.photo-ph {
  width: 100%;
  height: 100%;
  background: url("/assets/images/hero-scene-04.png") center / cover;
}
.voice:nth-child(2) .photo-ph { background-image: url("/assets/images/hero-scene-03.png"); }
.voice:nth-child(3) .photo-ph { background-image: url("/assets/images/hero-scene-02.png"); }
.photo-ph::before,
.photo-ph::after {
  content: none;
}
.voice-lic {
  right: -8px;
  bottom: -3px;
}
.voice-name {
  align-self: end;
}
.voice-h {
  grid-column: 1 / -1;
  min-height: 52px;
  margin: 10px 0 0;
  font-size: 21px;
  line-height: 1.35;
}
.voice-q {
  grid-column: 1 / -1;
  max-height: 8.8em;
  overflow: hidden;
  font-size: 13px;
}
.voice-q-mark {
  display: none;
}
.voice-stat {
  grid-column: 1 / -1;
  align-items: center;
}
.vs-num {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 7px 10px;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(180deg, #c41c1f, #8f0d0f);
  font-weight: 900;
}
.vs-num b {
  font-family: var(--f-num);
  font-size: 28px;
  line-height: .9;
}
.vs-num i {
  font-size: 12px;
  font-style: normal;
}
.vs-lbl,
.vs-tag {
  color: var(--c-fg-mute);
  font-size: 12px;
}

.faq {
  color: #fff;
  background:
    radial-gradient(circle at 3% 7%, rgba(215,173,74,.18), transparent 18rem),
    radial-gradient(circle at 94% 12%, rgba(215,173,74,.14), transparent 17rem),
    #050505;
}
.faq .sec-title {
  color: #fff;
}
.faq .eyebrow {
  display: none;
}
.faq-list {
  max-width: 1160px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(215,173,74,.35);
  border-radius: 0;
  color: #fff;
  background: rgba(255,255,255,.035);
  box-shadow: none;
}
.faq-q {
  min-height: 74px;
  grid-template-columns: 52px 1fr 24px;
  gap: 10px;
  padding: 18px;
}
.faq-q-mark {
  display: none;
}
.faq-q-num {
  color: var(--c-highlight);
  font-size: 24px;
}
.faq-q-num::before {
  content: "Q";
}
.faq-q-text {
  color: #fffaf1;
}
.faq-a-inner {
  grid-template-columns: 1fr;
  padding-inline: 18px;
}
.faq-a-mark {
  display: none;
}
.faq-a p {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.promise {
  display: none;
}
.apply {
  display: none;
}
.marquee-2 {
  display: none;
}

.final {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(215,173,74,.28), transparent 20rem),
    linear-gradient(90deg, rgba(5,5,5,.82), rgba(5,5,5,.66)),
    url("/assets/images/hero-scene-03.png") left center / cover;
}
.final::before {
  content: "";
  position: absolute;
  left: max(28px, calc((100vw - 1120px) / 2));
  bottom: 72px;
  width: min(38vw, 440px);
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(215,173,74,.24);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.24)),
    url("/assets/images/hero-scene-03.png") center / cover;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}
.final-wrap {
  width: min(760px, 62vw);
  margin-right: 0;
  margin-left: auto;
  text-align: center;
}
.final-tag {
  display: none;
}
.final-title {
  color: var(--c-highlight);
  font-size: clamp(42px, 5.4vw, 78px);
}
.final-title .hand {
  font-family: var(--f-serif);
}
.final-title .marker {
  background: none;
  color: var(--c-highlight);
}
.final-lead {
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.booking-step-indicator {
  gap: 18px;
  width: min(100%, 620px);
  margin: 30px auto;
  padding: 22px 28px;
  border: 1px solid rgba(215,173,74,.54);
  border-radius: 8px;
  background: rgba(0,0,0,.28);
}
.booking-step-dot {
  position: relative;
  width: auto;
  height: auto;
  min-width: 118px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent !important;
  font-family: var(--f-serif);
  font-weight: 900;
}
.booking-step-dot.active {
  color: #fff;
}
.booking-step-dot span {
  display: block;
  color: var(--c-highlight);
  font-family: var(--f-num);
  font-size: 18px;
}
.booking-step-dot[data-step="1"]::after { content: "日程を選ぶ"; }
.booking-step-dot[data-step="2"]::after { content: "情報入力"; }
.booking-step-dot[data-step="3"]::after { content: "当日参加"; }
.booking-step-line {
  width: 18px;
  background: rgba(215,173,74,.7);
}
.booking-panel {
  border-color: rgba(215,173,74,.36);
  background: rgba(5,5,5,.5);
}
.final .booking-btn-next,
.fixed-bar-btn {
  min-height: 66px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dc2428, #990d10);
  box-shadow: 0 18px 46px rgba(185,21,22,.45), inset 0 -5px 0 rgba(0,0,0,.26);
}
.final-badges {
  display: none;
}
.fixed-bar {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(560px, calc(100vw - 28px));
  opacity: 0;
  transform: translateX(-50%) translateY(18px);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}
.fixed-bar.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.fixed-bar-inner {
  display: flex;
  justify-content: center;
}
.fixed-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  color: #fff;
  font-weight: 900;
}
.fixed-bar-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .cinema-hero { min-height: 900px; }
  .cinema-grid {
    height: 500px;
    grid-template-columns: repeat(2, 1fr);
  }
  .cinema-copy { top: 176px; }
  .cinema-player { margin-top: -82px; }
  .comp-podium {
    grid-template-columns: 1fr;
    gap: 12px;
    border: 0;
    background: transparent;
  }
  .comp-col {
    border: 1px solid rgba(255,255,255,.16);
  }
  .comp-col-us {
    margin: 0;
  }
  .comp-col-labels {
    display: none;
  }
  .proc-list,
  .voices-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .proc-item:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -7px;
    transform: translateX(50%) rotate(135deg);
  }
  .final::before {
    position: relative;
    left: auto;
    bottom: auto;
    display: block;
    width: min(100%, 520px);
    margin: 0 auto 28px;
  }
  .final-wrap {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-topbar-inner { min-height: 58px; }
  .hero-brand-text b { font-size: 21px; }
  .cinema-hero { min-height: 760px; }
  .cinema-grid {
    height: 360px;
    grid-template-columns: repeat(2, 1fr);
    opacity: .32;
  }
  .hero-generated-video {
    object-position: center top;
  }
  .cinema-copy {
    top: 118px;
    padding-inline: 18px;
  }
  .cinema-title {
    font-size: clamp(34px, 11vw, 48px);
  }
  .cinema-sub {
    font-size: 21px;
  }
  .cinema-player {
    margin-top: -32px;
  }
  .cinema-controls {
    grid-template-columns: 22px auto 1fr;
  }
  .cinema-controls .cinema-icon {
    display: none;
  }
  .cinema-chapters {
    grid-template-columns: repeat(2, 1fr);
  }
  .chapter img {
    height: 54px;
  }
  .cinema-action {
    margin-top: 20px;
  }
  .hero-btn {
    width: 100%;
  }
  .cta-band-text {
    display: grid;
    gap: 16px;
    font-size: 17px;
  }
  .comp-cell,
  .comp-label-row {
    min-height: auto;
  }
  .proc-card {
    min-height: 228px;
  }
  .voice {
    grid-template-columns: 74px 1fr;
    padding: 20px;
  }
  .voice-portrait {
    width: 74px;
    height: 74px;
  }
  .voice-q {
    max-height: none;
  }
  .faq-q {
    grid-template-columns: 46px 1fr 22px;
    padding: 16px;
  }
  .faq-q-num {
    display: block;
  }
  .booking-step-indicator {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }
  .booking-step-line {
    display: none;
  }
  .booking-step-dot {
    min-width: 0;
  }
  .final::before {
    aspect-ratio: 16 / 10;
  }
}

/* Static-image Hero direction */
.still-hero {
  min-height: clamp(680px, 88vh, 820px);
  overflow: hidden;
}
.hero-still-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.42) 30%, rgba(0,0,0,.26) 58%, rgba(0,0,0,.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.04) 38%, #050505 100%),
    url("/assets/images/skima-fp-hero-still-v2.png") center / cover no-repeat;
  transform: scale(1.01);
}
.still-hero .cinema-scrim {
  z-index: 1;
  background:
    radial-gradient(circle at 52% 45%, rgba(215,173,74,.13), transparent 24rem),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.08) 58%, #050505 100%);
}
.still-hero .cinema-copy {
  top: 190px;
  z-index: 3;
  width: min(100%, 980px);
}
.hero-static-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  max-width: min(100%, 34em);
  margin-inline: auto;
  margin-bottom: 20px;
  text-align: center;
  color: var(--c-highlight);
  font-family: var(--f-serif);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 900;
  letter-spacing: .08em;
  text-shadow: 0 8px 24px rgba(0,0,0,.72);
}
.hero-static-kicker::before,
.hero-static-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(215,173,74,.72);
}
.still-hero .cinema-title {
  font-size: clamp(46px, 6.4vw, 92px);
}
.still-hero .cinema-sub {
  color: #fffaf1;
}
.hero-still-panel {
  position: absolute;
  left: 50%;
  bottom: 58px;
  z-index: 4;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 22px;
}
.hero-still-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero-still-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid rgba(215,173,74,.45);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
}
.hero-still-action {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
}

@media (max-width: 980px) {
  .still-hero {
    min-height: 780px;
  }
  .still-hero .cinema-copy {
    top: 170px;
  }
  .hero-still-panel {
    bottom: 46px;
  }
}

@media (max-width: 640px) {
  .still-hero {
    min-height: 720px;
  }
  .hero-still-bg {
    background:
      linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.42)),
      linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.08) 45%, #050505 100%),
      url("/assets/images/skima-fp-hero-still-v2.png") 39% center / cover no-repeat;
  }
  .still-hero .cinema-copy {
    top: 116px;
    padding-inline: 18px;
  }
  .hero-static-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: .03em;
  }
  .hero-static-kicker::before,
  .hero-static-kicker::after {
    width: 18px;
  }
  .still-hero .cinema-title {
    font-size: clamp(34px, 11vw, 48px);
  }
  .hero-still-panel {
    bottom: 34px;
    gap: 18px;
  }
  .hero-still-points {
    max-width: 330px;
    gap: 8px;
  }
  .hero-still-points span {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 11px;
  }
}

/* Image-comp fidelity fixes for comparison and process sections */
.comp .shell,
.proc .shell {
  max-width: 1260px;
}
.comp-label-row {
  justify-content: center;
  gap: 10px;
  padding-inline: 18px;
}
.comp-label-row::before {
  content: none !important;
  display: none !important;
}
.comp-label-text {
  color: #f2dfb5;
}
.comp-best {
  display: none;
}
.comp-col-foot.us {
  min-height: 60px;
  padding: 0;
}
.comp-col-foot.us .comp-cta-mini {
  display: none;
}
.comp-col-foot.us::before {
  content: "BEST CHOICE";
  width: 100%;
  height: 100%;
  min-height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #c82022, #8f0d0f);
  font-family: var(--f-serif);
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 900;
  letter-spacing: .04em;
}
.comp-col-head.us {
  min-height: 112px;
}
.comp-col-us .comp-col-name {
  font-size: clamp(24px, 2.5vw, 34px);
}
.proc-list {
  align-items: stretch;
}
.proc-card {
  padding-top: 124px;
}
.proc-item:not(:last-child)::after {
  top: 38px;
}

@media (max-width: 980px) {
  .comp .shell,
  .proc .shell {
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-color: rgba(215,173,74,.72) rgba(0,0,0,.14);
  }
  .comp-podium {
    width: 100%;
    min-width: 760px;
    grid-template-columns: .7fr 1.06fr .95fr .95fr;
    gap: 0;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.04);
  }
  .comp-col {
    border: 0;
    border-right: 1px solid rgba(255,255,255,.18);
  }
  .comp-col:last-child {
    border-right: 0;
  }
  .comp-col-labels {
    display: block;
  }
  .comp-col-us {
    margin: -14px 0 -14px;
  }
  .comp-label-row,
  .comp-cell {
    min-height: 68px;
    padding: 12px 14px;
  }
  .comp-label-row::before {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .comp-val {
    font-size: 13px;
    line-height: 1.55;
  }
  .proc-list {
    width: 100%;
    min-width: 760px;
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    gap: 10px;
    overflow: visible;
  }
  .proc-card {
    min-height: 236px;
    padding: 116px 12px 16px;
  }
  .proc-card::before {
    height: 84px;
  }
  .proc-card-title {
    min-height: 42px;
    font-size: 15px;
  }
  .proc-desc {
    font-size: 11px;
    line-height: 1.65;
  }
  .proc-item:not(:last-child)::after {
    top: 35px;
    right: -8px;
    bottom: auto;
    transform: rotate(45deg);
  }
}

@media (max-width: 640px) {
  .comp .shell,
  .proc .shell {
    padding-inline: 18px;
  }
  .comp-podium {
    width: 780px;
    min-width: 780px;
  }
  .proc-list {
    width: 780px;
    min-width: 780px;
  }
}

/* Premium refinement pass: reasons, process, voices, FAQ, final CTA */
.rsn-list.reveal-stagger > *,
.proc-list.reveal-stagger > *,
.voices-grid.reveal-stagger > *,
.faq-list.reveal-stagger > * {
  opacity: 1;
  transform: none;
}
.reasons {
  background:
    radial-gradient(circle at 10% 8%, rgba(215,173,74,.18), transparent 18rem),
    radial-gradient(circle at 92% 22%, rgba(255,255,255,.08), transparent 16rem),
    #080807;
}
.reasons .shell {
  max-width: 1240px;
}
.rsn-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.rsn,
.rsn.rsn-l,
.rsn.rsn-r {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 390px;
  padding: clamp(24px, 2.8vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(215,173,74,.28);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.024)),
    linear-gradient(135deg, rgba(215,173,74,.14), transparent 42%),
    rgba(18,16,13,.92);
  box-shadow: 0 26px 70px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.08);
}
.rsn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(215,173,74,.72), transparent 38%) top left / 100% 1px no-repeat,
    radial-gradient(circle at 82% 6%, rgba(215,173,74,.18), transparent 12rem);
}
.rsn::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -88px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(215,173,74,.18);
  border-radius: 50%;
}
.rsn-r .rsn-visual,
.rsn-visual {
  order: initial;
  position: relative;
  z-index: 1;
  display: flex;
  min-height: auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.rsn-ill-svg {
  display: none;
}
.rsn-tag {
  position: static;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(215,173,74,.36);
  border-radius: 999px;
  color: rgba(244,224,178,.76);
  background: rgba(0,0,0,.24);
  box-shadow: none;
  font-size: 10px;
  letter-spacing: .12em;
}
.rsn-no {
  position: static;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(215,173,74,.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,.24), transparent 25%),
    linear-gradient(180deg, rgba(215,173,74,.18), rgba(215,173,74,.04));
  box-shadow: inset 0 0 0 8px rgba(0,0,0,.16), 0 18px 38px rgba(0,0,0,.26);
}
.rsn-no small {
  display: block;
  color: rgba(244,224,178,.64);
  font-size: 9px;
  letter-spacing: .14em;
}
.rsn-no b {
  color: #f3d27a;
  font-family: var(--f-num);
  font-size: 44px;
  line-height: .86;
  text-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.rsn-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
}
.rsn-sub,
.rsn-text,
.rsn-bullets {
  display: block;
}
.rsn-sub {
  color: rgba(215,173,74,.9);
  font-family: var(--f-serif);
  font-size: 15px;
  font-weight: 900;
}
.rsn-lead {
  margin: 0;
  font-size: clamp(24px, 2.35vw, 32px);
  line-height: 1.28;
}
.rsn-lead .marker {
  background: linear-gradient(transparent 62%, rgba(215,173,74,.22) 0);
}
.rsn-text {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.9;
}
.rsn-bullets {
  margin-top: 4px;
  gap: 8px;
}
.rsn-bullets li {
  min-height: 36px;
  border: 1px solid rgba(215,173,74,.18);
  border-radius: 4px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.04);
  font-size: 13px;
}
.rsn-bullets svg {
  color: #e8c467;
}

.proc-list {
  align-items: stretch;
}
.proc-item {
  display: grid;
  grid-template-rows: 64px 1fr;
  height: 100%;
}
.proc-rail {
  height: 64px;
  margin: 0 0 -29px;
  align-items: start;
}
.proc-circle {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.76);
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.36), transparent 28%),
    linear-gradient(180deg, #d6af62, #9b7130);
  box-shadow: 0 16px 34px rgba(78,49,12,.22), inset 0 0 0 5px rgba(255,255,255,.08);
}
.proc-circle b {
  font-size: 24px;
  line-height: 1;
}
.proc-card {
  display: flex;
  min-height: 292px;
  height: 100%;
  flex-direction: column;
  padding: 132px 16px 20px;
  border-color: rgba(165,125,55,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(252,248,239,.94)) !important;
  box-shadow: 0 18px 42px rgba(49,33,15,.12);
}
.proc-card::before {
  top: 16px;
  left: 16px;
  right: 16px;
  height: 94px;
  border-radius: 5px;
  background-position: center 36%;
}
.proc-card-head {
  min-height: 86px;
  align-content: start;
}
.proc-card-title {
  min-height: 46px;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1.35;
}
.proc-meta {
  min-height: 30px;
  align-items: center;
}
.proc-desc {
  margin-top: auto;
  min-height: 84px;
  display: grid;
  align-items: start;
  font-size: 12px;
  line-height: 1.72;
}
.proc-item:not(:last-child)::after {
  top: 38px;
}

.voices {
  background:
    radial-gradient(circle at 86% 4%, rgba(215,173,74,.2), transparent 17rem),
    linear-gradient(180deg, #f7f1e6, #fffaf0);
}
.voices .shell {
  max-width: 1280px;
}
.voices-grid {
  gap: 20px;
  align-items: stretch;
}
.voice {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 14px;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(152,111,42,.18);
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: 0 24px 64px rgba(57,38,12,.12);
}
.voice-no {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(12,10,8,.62);
  backdrop-filter: blur(10px);
  font-size: 10px;
  letter-spacing: .12em;
}
.voice-portrait {
  width: 100%;
  height: 178px;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.voice-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.34));
  pointer-events: none;
}
.photo-ph {
  transform: scale(1.01);
}
.voice:nth-child(1) .photo-ph {
  background-image: url("/assets/images/hero-scene-04.png");
  background-position: 73% 32%;
}
.voice:nth-child(2) .photo-ph {
  background-image: url("/assets/images/hero-scene-03.png");
  background-position: 78% 34%;
}
.voice:nth-child(3) .photo-ph {
  background-image: url("/assets/images/hero-scene-02.png");
  background-position: 76% 31%;
}
.voice-lic {
  right: 16px;
  bottom: 14px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  background: rgba(13,11,9,.72);
  box-shadow: none;
}
.voice-name,
.voice-h,
.voice-q,
.voice-stat {
  margin-inline: 24px;
}
.voice-name {
  align-self: auto;
  padding-top: 4px;
}
.voice-name b {
  font-family: var(--f-serif);
  font-size: 23px;
}
.voice-h {
  min-height: 58px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 21px;
}
.voice-q {
  max-height: none;
  min-height: 182px;
  margin-top: 0;
  margin-bottom: 0;
  color: rgba(21,18,14,.72);
  font-size: 13px;
  line-height: 1.86;
}
.voice-stat {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(152,111,42,.22);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(215,173,74,.18), transparent 45%),
    #15120e;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.voice-stat::before {
  content: "EARNED";
  color: rgba(244,224,178,.62);
  font-family: var(--f-num);
  font-size: 12px;
  letter-spacing: .16em;
}
.vs-num {
  padding: 0;
  border-radius: 0;
  color: #f0ca6f;
  background: transparent;
}
.vs-num b {
  font-size: 38px;
}
.vs-num i {
  color: rgba(255,255,255,.78);
}
.vs-lbl,
.vs-tag {
  color: rgba(255,255,255,.62);
}

.faq-list {
  max-width: 920px;
  grid-template-columns: 1fr;
  gap: 10px;
}
.faq-item {
  overflow: hidden;
  border-color: rgba(215,173,74,.24);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.024)),
    rgba(9,8,7,.92);
  transition: border-color .22s ease, background .22s ease;
}
.faq-item.open {
  border-color: rgba(215,173,74,.55);
  background:
    linear-gradient(180deg, rgba(215,173,74,.1), rgba(255,255,255,.028)),
    rgba(10,9,8,.96);
}
.faq-q {
  min-height: 76px;
  grid-template-columns: 48px 1fr 34px;
  padding: 0 22px;
  text-align: left;
}
.faq-q-num {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(215,173,74,.32);
  border-radius: 50%;
  color: #f0ca6f;
  font-size: 17px;
  line-height: 1;
}
.faq-q-num::before {
  content: none;
}
.faq-q-text {
  font-size: 16px;
  line-height: 1.45;
}
.faq-q-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(215,173,74,.22);
  border-radius: 50%;
  color: #f0ca6f;
}
.faq-a-inner {
  padding-inline: 70px 66px;
}
.faq-item.open .faq-a-inner {
  padding-bottom: 24px;
}
.faq-a p {
  max-width: 760px;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.9;
}

.final::before {
  left: 50%;
  bottom: 62px;
  width: min(70vw, 560px);
  opacity: .22;
  transform: translateX(-50%);
}
.final-wrap {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}
.final-title,
.final-lead {
  text-align: center;
}
.booking-step-indicator,
.booking-panel {
  margin-inline: auto;
}

@media (max-width: 980px) {
  .rsn-list {
    grid-template-columns: 1fr;
  }
  .rsn,
  .rsn.rsn-l,
  .rsn.rsn-r {
    min-height: auto;
  }
  .proc-list {
    grid-template-columns: repeat(5, minmax(146px, 1fr));
  }
  .proc-card {
    min-height: 282px;
  }
  .voices-grid {
    grid-template-columns: 1fr;
  }
  .voice {
    max-width: 720px;
    margin-inline: auto;
  }
  .voice-q {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .rsn,
  .rsn.rsn-l,
  .rsn.rsn-r {
    padding: 22px;
  }
  .rsn-visual {
    align-items: center;
  }
  .rsn-no {
    width: 78px;
    height: 78px;
  }
  .rsn-no b {
    font-size: 36px;
  }
  .proc-list {
    width: 820px;
    min-width: 820px;
  }
  .proc-card {
    min-height: 286px;
  }
  .voice-portrait {
    height: 168px;
  }
  .voice {
    min-height: 704px;
  }
  .voice-name,
  .voice-h,
  .voice-q,
  .voice-stat {
    margin-inline: 20px;
  }
  .faq-q {
    min-height: 74px;
    grid-template-columns: 40px 1fr 30px;
    padding: 0 16px;
  }
  .faq-q-num {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .faq-q-text {
    font-size: 14px;
  }
  .faq-a-inner {
    padding-inline: 58px 18px;
  }
.final::before {
    width: min(92vw, 520px);
    opacity: .18;
  }
}

.reasons .sec-title,
.reasons .sec-title .marker,
.reasons .rsn-lead,
.reasons .rsn-lead .marker {
  color: #fffaf1 !important;
}
.reasons .sec-lead,
.rsn-text {
  color: rgba(255,255,255,.76) !important;
}
.rsn-sub {
  color: #f0ca6f !important;
}
.voice-stat {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.voice-stat > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: end;
}
.vs-num {
  grid-row: 1 / span 2;
}
.vs-lbl {
  display: block;
  align-self: end;
  line-height: 1.4;
}
.vs-tag {
  max-width: 74px;
  text-align: right;
  line-height: 1.5;
}

/* Overall polish pass: problem cards, service reveal, reasons, and process */
.problems .shell {
  max-width: 1260px;
}
.prob-list {
  max-width: 1180px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.prob {
  min-height: 178px;
  grid-template-rows: 36px 1fr;
  align-content: stretch;
  gap: 18px;
  padding: 24px 18px 22px;
  border: 1px solid rgba(166,124,54,.16);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,251,244,.96)),
    #fff;
  box-shadow: 0 18px 42px rgba(60,38,14,.12);
}
.prob::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(185,132,40,.48), transparent 42%) top left / 100% 1px no-repeat;
}
.prob-check {
  width: 34px;
  height: 34px;
  place-self: center;
  border: 1px solid rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 36% 24%, rgba(255,255,255,.4), transparent 32%),
    linear-gradient(180deg, #b91d23, #8e1016);
  box-shadow: 0 10px 22px rgba(142,16,22,.22), inset 0 0 0 5px rgba(255,255,255,.08);
}
.prob-text {
  min-height: 82px;
  display: grid;
  place-items: center;
  align-self: stretch;
  color: rgba(20,17,13,.9);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.58;
  text-align: center;
  text-wrap: balance;
}

.ovw-svc-grid {
  gap: 18px;
}
.ovw-svc {
  height: 270px;
  min-height: 270px;
  padding: 26px 22px 24px;
  border-radius: 6px;
  cursor: pointer;
  outline: 0;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.ovw-svc::before {
  transition: transform .42s ease, filter .42s ease;
}
.ovw-svc::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px;
  z-index: 0;
  height: 0;
  border: 1px solid rgba(215,173,74,.32);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(12,10,8,.74), rgba(12,10,8,.58)),
    rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  opacity: 0;
  transition: height .32s ease, opacity .22s ease;
}
.ovw-svc:hover,
.ovw-svc:focus,
.ovw-svc:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(235,205,122,.74);
  box-shadow: 0 30px 74px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12);
}
.ovw-svc:hover::before,
.ovw-svc:focus::before,
.ovw-svc:focus-visible::before {
  transform: scale(1.1);
  filter: saturate(1.08) contrast(1.04);
}
.ovw-svc:hover::after,
.ovw-svc:focus::after,
.ovw-svc:focus-visible::after {
  height: 86px;
  opacity: 1;
}
.ovw-svc-icon,
.ovw-svc-title-c,
.ovw-svc-desc {
  position: relative;
  z-index: 1;
}
.ovw-svc-icon {
  transition: transform .28s ease, background .28s ease, color .28s ease;
}
.ovw-svc:hover .ovw-svc-icon,
.ovw-svc:focus .ovw-svc-icon,
.ovw-svc:focus-visible .ovw-svc-icon {
  transform: translateY(-4px);
  color: #f5d98b;
  background: rgba(20,17,13,.56);
}
.ovw-svc-title-c {
  min-height: 56px;
  display: grid;
  place-items: end center;
  line-height: 1.32;
}
.ovw-svc-desc {
  display: block !important;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255,249,235,.88);
  font-size: 13px;
  line-height: 1.72;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height .32s ease, margin .32s ease, opacity .22s ease, transform .32s ease;
}
.ovw-svc:hover .ovw-svc-desc,
.ovw-svc:focus .ovw-svc-desc,
.ovw-svc:focus-visible .ovw-svc-desc {
  max-height: 78px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

.rsn-list {
  gap: 20px;
}
.rsn,
.rsn.rsn-l,
.rsn.rsn-r {
  min-height: 438px;
  padding: 34px 28px 30px;
  border-radius: 5px;
  border-color: rgba(225,185,88,.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(235,205,122,.15), transparent 38%),
    #11100d;
}
.rsn::after {
  width: 250px;
  height: 250px;
  right: -118px;
  bottom: -128px;
  border-color: rgba(225,185,88,.2);
}
.rsn-visual {
  align-items: flex-start;
  margin-bottom: 22px;
}
.rsn-tag {
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 0;
  border-color: rgba(225,185,88,.42);
  border-inline: 0;
  background: transparent;
}
.rsn-no {
  width: auto;
  height: auto;
  justify-items: end;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.rsn-no small {
  color: rgba(244,224,178,.54);
  font-size: 10px;
  letter-spacing: .2em;
}
.rsn-no b {
  color: transparent;
  font-size: 72px;
  line-height: .78;
  -webkit-text-stroke: 1px rgba(240,202,111,.66);
  text-shadow: 0 20px 42px rgba(0,0,0,.34);
}
.rsn-body {
  gap: 16px;
}
.rsn-lead {
  min-height: 82px;
  display: grid;
  align-items: center;
  font-size: clamp(24px, 2vw, 29px);
}
.reasons .rsn-lead .marker {
  background: none;
}
.rsn-text {
  min-height: 154px;
  font-size: 13.5px;
}
.rsn-bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}
.rsn-bullets li {
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 12px 9px;
  border: 1px solid rgba(225,185,88,.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 22%, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(180deg, rgba(215,173,74,.16), rgba(255,255,255,.035));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  color: rgba(255,250,239,.92);
  font-size: 12px;
  line-height: 1.38;
  text-align: center;
}
.rsn-bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0ca6f;
  box-shadow: 0 0 0 5px rgba(240,202,111,.12);
}
.rsn-bullets svg {
  display: none;
}

.proc .shell {
  max-width: 1240px;
}
.proc-list {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.proc-list::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 35px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,145,50,.52), transparent);
}
.proc-item {
  grid-template-rows: 74px minmax(336px, 1fr);
}
.proc-item:not(:last-child)::after {
  content: none;
}
.proc-rail {
  height: 74px;
  margin-bottom: -34px;
}
.proc-circle {
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 1;
  border-color: rgba(255,255,255,.88);
  box-shadow: 0 16px 34px rgba(87,55,14,.24), inset 0 0 0 6px rgba(255,255,255,.08);
}
.proc-circle b {
  font-size: 27px;
}
.proc-card {
  min-height: 336px;
  padding: 138px 18px 22px;
  border-radius: 5px;
  border-color: rgba(173,126,42,.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,248,240,.95)) !important;
  box-shadow: 0 22px 54px rgba(54,34,11,.13);
}
.proc-card::before {
  height: 98px;
  border-radius: 4px;
}
.proc-card-head {
  min-height: 92px;
}
.proc-card-title {
  min-height: 52px;
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.38;
}
.proc-desc {
  min-height: 96px;
  color: rgba(25,21,15,.68) !important;
  font-size: 12.5px;
  line-height: 1.78;
}
.proc-time,
.proc-tag {
  border-color: rgba(160,110,31,.22);
  background: rgba(196,145,50,.1);
  color: rgba(74,52,18,.72);
}

.voice:nth-child(1) .photo-ph {
  background-image: url("/assets/images/hero-scene-04.png");
  background-position: 72% 29%;
}
.voice:nth-child(2) .photo-ph {
  background-image: url("/assets/images/hero-scene-02.png");
  background-position: 76% 27%;
}
.voice:nth-child(3) .photo-ph {
  background-image: url("/assets/images/hero-scene-01.png");
  background-position: 70% 30%;
}

@media (max-width: 980px) {
  .problems .shell {
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .prob-list {
    width: 1040px;
    min-width: 1040px;
  }
  .ovw-svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rsn-list {
    grid-template-columns: 1fr;
  }
  .rsn,
  .rsn.rsn-l,
  .rsn.rsn-r {
    min-height: auto;
  }
  .rsn-lead,
  .rsn-text {
    min-height: auto;
  }
  .rsn-bullets {
    max-width: 420px;
  }
  .proc-list {
    width: 1120px;
    min-width: 1120px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .proc-card {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .prob-list {
    width: 1120px;
    min-width: 1120px;
  }
  .prob {
    min-height: 166px;
  }
  .prob-text {
    min-height: 74px;
    font-size: 14px;
  }
  .ovw-svc-grid {
    grid-template-columns: 1fr;
  }
  .ovw-svc {
    min-height: 250px;
  }
  .rsn-no b {
    font-size: 58px;
  }
  .rsn,
  .rsn.rsn-l,
  .rsn.rsn-r {
    padding-inline: 14px;
  }
  .rsn-bullets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
  }
  .rsn-bullets li {
    font-size: 11px;
  }
  .proc-list {
    width: 1060px;
    min-width: 1060px;
  }
  .proc-card {
    min-height: 326px;
  }
}

/* Previous-good base: restrained polish for root LP */
.comp .sec-title,
.comp .sec-lead {
  opacity: 1;
}

.comp-podium {
  box-shadow:
    0 34px 90px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.comp-col-us {
  background:
    linear-gradient(180deg, rgba(215,173,74,.16), rgba(142,16,22,.12)),
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    #18120d;
}

.comp-col-us .comp-cell {
  grid-template-columns: 34px 1fr;
  gap: 12px;
  justify-items: stretch;
  text-align: left;
}

.comp-col-us .comp-val {
  display: grid;
  gap: 3px;
  align-content: center;
  line-height: 1.3;
}

.comp-col-us .comp-val b {
  color: #fff8e6;
  font-family: var(--f-serif);
  font-size: clamp(16px, 1.35vw, 20px);
}

.comp-col-us .comp-val small {
  color: rgba(244,224,178,.66);
  font-size: 11px;
  font-weight: 800;
}

.comp-col-foot.us::before {
  min-height: 56px;
  letter-spacing: .08em;
}

.voice-stat {
  position: relative;
  min-height: 108px;
  padding-top: 30px;
}

.voice-stat::before {
  content: "副収入実績";
  position: absolute;
  top: 12px;
  left: 18px;
  color: rgba(244,224,178,.68);
  font-family: var(--f-serif);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.vs-tag {
  padding: 7px 9px;
  border: 1px solid rgba(240,202,111,.28);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.045);
}

.final .shell {
  display: grid;
  justify-items: center;
}

.final-wrap {
  transform: translateX(0);
}

@media (max-width: 640px) {
  .comp-col-us .comp-cell {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding-inline: 10px;
  }

  .comp-col-us .comp-val b {
    font-size: 15px;
  }

  .comp-col-us .comp-val small {
    font-size: 10px;
  }

  .voice-stat {
    min-height: 104px;
  }
}

/* Comp CTA revival: keep the previous-good base, restore the best parts of the original generated comp */
.hero-cta-band-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.cta-band-text {
  max-width: min(760px, 100%);
  line-height: 1.35;
  font-size: clamp(20px, 2.2vw, 28px);
}

.cta-band-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  text-wrap: balance;
}

.cta-band-line::before {
  flex: 0 0 54px;
  margin-right: 0;
}

.cta-band-row {
  max-width: min(820px, 100%);
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  justify-content: center;
}

.cta-band-pill,
.cta-band-foot {
  white-space: nowrap;
}

.problems {
  background:
    radial-gradient(circle at 8% 8%, rgba(215,173,74,.16), transparent 18rem),
    linear-gradient(180deg, #fffaf0, #f6efe3);
}

.problems .sec-title {
  color: #17120c;
}

.problems .sec-title .marker {
  color: #17120c;
  background: linear-gradient(transparent 64%, rgba(185,21,22,.2) 0);
}

.prob {
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.prob::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255,255,255,.52) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity .24s ease, transform .7s ease;
}

.prob:hover,
.prob:focus-within {
  transform: translateY(-5px);
  border-color: rgba(185,21,22,.26);
  box-shadow: 0 24px 60px rgba(60,38,14,.16);
}

.prob:hover::after,
.prob:focus-within::after {
  opacity: 1;
  transform: translateX(70%);
}

.ovw-svc {
  overflow: hidden;
}

.ovw-svc::after {
  height: 118px;
}

.ovw-svc:hover::after,
.ovw-svc:focus::after,
.ovw-svc:focus-visible::after {
  height: 150px;
}

.ovw-svc-desc {
  line-height: 1.62;
}

.ovw-svc:hover .ovw-svc-desc,
.ovw-svc:focus .ovw-svc-desc,
.ovw-svc:focus-visible .ovw-svc-desc {
  max-height: 118px;
}

.ovw-svc-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: rgba(255,249,235,.78);
  font-size: 11px;
  font-weight: 900;
  list-style: none;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height .32s ease, margin .32s ease, opacity .22s ease, transform .32s ease;
}

.ovw-svc-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #f0ca6f;
  vertical-align: middle;
}

.ovw-svc:hover .ovw-svc-points,
.ovw-svc:focus .ovw-svc-points,
.ovw-svc:focus-visible .ovw-svc-points {
  max-height: 92px;
  margin-top: 8px;
  opacity: 1;
  transform: translateY(0);
}

.proc {
  background:
    radial-gradient(circle at 15% 10%, rgba(215,173,74,.2), transparent 20rem),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.08), transparent 18rem),
    #0d0c0a;
}

.proc-card {
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease, filter .34s ease;
}

.proc-item:hover .proc-card {
  transform: translateY(-8px);
  border-color: rgba(225,185,88,.46);
  box-shadow: 0 30px 78px rgba(54,34,11,.2);
  filter: saturate(1.04);
}

.proc-circle {
  animation: premiumStepPulse 3.8s ease-in-out infinite;
}

.proc-item:nth-child(2) .proc-circle { animation-delay: .2s; }
.proc-item:nth-child(3) .proc-circle { animation-delay: .4s; }
.proc-item:nth-child(4) .proc-circle { animation-delay: .6s; }
.proc-item:nth-child(5) .proc-circle { animation-delay: .8s; }

.voices {
  background:
    radial-gradient(circle at 96% 10%, rgba(215,173,74,.14), transparent 17rem),
    linear-gradient(180deg, #f7f1e6, #fffaf0);
}

.voices-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.voice {
  position: relative;
  display: grid;
  grid-template-columns: 122px 1fr;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 16px;
  height: 262px;
  min-height: 262px;
  padding: 14px;
  overflow: hidden;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,251,244,.96)),
    #fff;
}

.voice-no {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(16,13,9,.64);
  backdrop-filter: blur(10px);
  font-size: 10px;
}

.voice-portrait {
  grid-row: 1 / -1;
  width: 122px;
  height: 100%;
  min-height: 234px;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #17120c;
}

.voice-portrait .photo-ph {
  width: 100%;
  height: 100%;
  transform: none;
}

.voice-lic {
  right: 8px;
  bottom: 8px;
  z-index: 2;
  color: #111;
}

.voice-name,
.voice-h,
.voice-q,
.voice-stat {
  margin-inline: 0;
}

.voice-name {
  padding-top: 4px;
}

.voice-name b {
  font-size: 18px;
}

.voice-h {
  min-height: 42px;
  font-size: 18px;
  line-height: 1.38;
}

.voice-q {
  min-height: 0;
  max-height: none;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(21,18,14,.68);
  font-size: 12px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.voice-stat {
  min-height: 56px;
  margin-bottom: 0;
  padding: 10px 12px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 14% 20%, rgba(240,202,111,.22), transparent 5rem),
    linear-gradient(180deg, #b0181d, #8e0e12);
}

.voice-stat::before {
  top: 8px;
  left: 12px;
  color: rgba(255,237,185,.76);
  font-size: 10px;
}

.voice-stat > div {
  gap: 0 8px;
}

.vs-num b {
  color: #fff7dc;
  font-size: 28px;
}

.vs-tag {
  display: none;
}

.final {
  padding-block: clamp(56px, 7vw, 86px);
  background:
    radial-gradient(circle at 92% 22%, rgba(215,173,74,.22), transparent 20rem),
    #050505;
}

.final::before {
  display: none;
}

.final .shell {
  max-width: 1120px;
  display: grid;
  justify-items: center;
  gap: 26px;
}

.final-camp-visual {
  position: relative;
  width: min(100%, 980px);
  overflow: hidden;
  border: 1px solid rgba(215,173,74,.28);
  border-radius: 8px;
  box-shadow: 0 32px 100px rgba(0,0,0,.5);
}

.final-camp-visual img {
  width: 100%;
  display: block;
}

.final-camp-hotspot {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 12.5%;
  width: 57%;
  height: 21%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.final-camp-hotspot:focus-visible {
  outline: 3px solid rgba(255,255,255,.92);
  outline-offset: 4px;
}

.final-wrap {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(215,173,74,.28);
  border-radius: 8px;
  background: rgba(10,9,8,.72);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

.final-tag,
.final-title,
.final-lead {
  display: none;
}

.booking-step-indicator {
  margin-top: 0;
}

@keyframes premiumStepPulse {
  0%, 100% { box-shadow: 0 16px 34px rgba(87,55,14,.24), inset 0 0 0 6px rgba(255,255,255,.08); transform: translateY(0); }
  50% { box-shadow: 0 22px 48px rgba(215,173,74,.32), inset 0 0 0 6px rgba(255,255,255,.12); transform: translateY(-3px); }
}

@media (max-width: 980px) {
  .cta-band-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .cta-band-pill,
  .cta-band-foot {
    white-space: normal;
  }

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

  .voice {
    max-width: 720px;
    grid-template-columns: 160px 1fr;
  }

  .voice-portrait {
    width: 160px;
  }
}

@media (max-width: 640px) {
  .cta-band-line {
    white-space: normal;
  }

  .prob-list {
    width: 1040px;
    min-width: 1040px;
  }

  .ovw-svc:hover .ovw-svc-desc,
  .ovw-svc:focus .ovw-svc-desc,
  .ovw-svc:focus-visible .ovw-svc-desc {
    max-height: 140px;
  }

  .voice {
    grid-template-columns: 118px 1fr;
    height: 270px;
    min-height: 270px;
  }

  .voice-portrait {
    width: 118px;
    min-height: 230px;
  }

  .voice-q {
    -webkit-line-clamp: 3;
  }

  .final {
    padding-inline: 0;
  }

  .final .shell {
    padding-inline: 14px;
  }

  .final-camp-visual {
    width: 100%;
    border-radius: 6px;
  }

  .final-camp-hotspot {
    left: 50%;
    right: auto;
    width: 57%;
    bottom: 13%;
    height: 21%;
    transform: translateX(-50%);
  }

  .final-wrap {
    padding: 18px 14px;
  }
}

/* Final fidelity lock: keep the previous-good base while borrowing the strongest comp details. */
@media (min-width: 641px) {
  .cta-band-text {
    max-width: min(980px, 100%);
    font-size: clamp(20px, 1.7vw, 25px);
  }

  .cta-band-line {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px;
    white-space: nowrap !important;
    text-wrap: nowrap;
    line-height: 1.08;
  }

  .cta-band-line::before {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin: 0 !important;
  }
}

.voice {
  grid-template-rows: auto auto minmax(66px, 1fr) auto;
  row-gap: 6px;
  height: 294px;
  min-height: 294px;
}

.voice .voice-name,
.voice .voice-h,
.voice .voice-q,
.voice .voice-stat {
  grid-column: 2;
}

.voice .voice-q {
  display: -webkit-box !important;
  height: 66px;
  min-height: 66px;
  max-height: 66px;
  overflow: hidden;
  color: rgba(21,18,14,.68);
  font-size: 12px;
  line-height: 1.62;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3;
}

.voice-portrait .photo-ph {
  background-size: cover;
}

.final-camp-visual {
  isolation: isolate;
}

.final-camp-hotspot {
  z-index: 3;
}

@media (max-width: 980px) {
  .voice {
    height: 282px;
    min-height: 282px;
  }

  .voice .voice-q {
    height: 58px;
    min-height: 58px;
    max-height: 58px;
  }
}

@media (max-width: 640px) {
  .cta-band-line {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1.25;
  }

  .cta-band-line::before {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin: 0 !important;
  }

  .voice {
    grid-template-columns: 112px 1fr;
    column-gap: 12px;
    height: 292px;
    min-height: 292px;
    padding: 12px;
  }

  .voice-portrait {
    width: 112px;
    min-height: 250px;
  }

  .voice-name b {
    font-size: 16px;
  }

  .voice-name small {
    font-size: 10px;
  }

  .voice-h {
    min-height: 40px;
    font-size: 15.5px;
  }

  .voice .voice-q {
    height: 56px;
    min-height: 56px;
    max-height: 56px;
    font-size: 11.2px;
    line-height: 1.6;
  }

  .voice-stat {
    min-height: 54px;
    padding: 9px 10px;
  }

  .vs-num b {
    font-size: 24px;
  }
}

/* CTA band copy fix: make the preparation/start message read cleanly. */
.cta-band-text {
  display: flex;
  justify-content: center;
  border-right: 0;
}

.cta-band-text::before {
  content: none !important;
  display: none !important;
}

.cta-band-line {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  color: #17120c;
  font-family: var(--f-serif);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.18;
  white-space: normal !important;
}

.cta-band-line::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  margin: 0 16px 0 0 !important;
  border-radius: 50%;
  color: #fffdf6;
  background: linear-gradient(180deg, #c69b4a, #9b7130);
  box-shadow: 0 10px 24px rgba(91,61,18,.18);
  font-family: var(--f-sans);
  font-size: 20px;
  line-height: 1;
}

.cta-band-main,
.cta-band-sub {
  display: inline-block;
  white-space: nowrap;
}

.cta-band-sep {
  width: 1px;
  height: 1.4em;
  margin: 0 18px;
  background: linear-gradient(180deg, transparent, rgba(157,111,38,.45), transparent);
}

@media (max-width: 640px) {
  .cta-band-text {
    padding-inline: 14px;
  }

  .cta-band-line {
    max-width: 330px;
    gap: 6px 0;
    font-size: 19px;
    letter-spacing: 0;
  }

  .cta-band-line::before {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    margin-right: 12px !important;
    font-size: 17px;
  }

  .cta-band-sep {
    width: 100%;
    height: 0;
    margin: 0;
    background: transparent;
  }

  .cta-band-main,
  .cta-band-sub {
    line-height: 1.28;
  }
}

/* Process section readability fix: dark background requires light title copy. */
.proc .sec-head {
  position: relative;
  z-index: 2;
}

.proc .sec-head::before {
  content: "";
  position: absolute;
  inset: -18px max(18px, 14%) -20px;
  z-index: -1;
  border-top: 1px solid rgba(240,202,111,.18);
  border-bottom: 1px solid rgba(240,202,111,.14);
  background:
    radial-gradient(ellipse at 50% 45%, rgba(0,0,0,.72), rgba(0,0,0,.42) 48%, transparent 74%);
  pointer-events: none;
}

.proc .sec-title {
  color: #fffaf1 !important;
  text-shadow:
    0 2px 8px rgba(0,0,0,.88),
    0 18px 44px rgba(0,0,0,.72);
}

.proc .sec-title .marker {
  color: #f0ca6f !important;
  background: linear-gradient(transparent 66%, rgba(185,21,22,.38) 0) !important;
  text-shadow:
    0 2px 8px rgba(0,0,0,.9),
    0 0 28px rgba(240,202,111,.22);
}

.proc .sec-lead {
  color: rgba(255,255,255,.76) !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.76);
}

.proc .sec-lead b {
  color: #fffaf1;
}

@media (max-width: 640px) {
  .proc .sec-head::before {
    inset: -14px -2px -18px;
    background:
      radial-gradient(ellipse at 50% 45%, rgba(0,0,0,.82), rgba(0,0,0,.48) 58%, transparent 82%);
  }
}

/* Voices and services final readability pass. */
.voices-grid {
  gap: 20px;
}

.voice {
  grid-template-columns: 122px minmax(0, 1fr);
  grid-template-rows: auto auto minmax(68px, auto) auto;
  row-gap: 8px;
  height: 314px;
  min-height: 314px;
  padding: 14px;
  border: 1px solid rgba(157,111,38,.18);
  box-shadow: 0 24px 64px rgba(57,38,12,.13);
}

.voice .voice-name,
.voice .voice-h,
.voice .voice-q,
.voice .voice-stat {
  grid-column: 2;
  margin-inline: 0;
}

.voice-portrait {
  width: 122px;
  min-height: 286px;
  border-radius: 6px;
}

.voice-portrait::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), transparent 46%, rgba(0,0,0,.44));
}

.voice-lic {
  right: 9px;
  bottom: 9px;
  padding: 6px 8px;
  border: 1px solid rgba(240,202,111,.46);
  color: #fffaf1;
  background: rgba(10,8,6,.78);
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 900;
}

.voice-name {
  min-height: 40px;
  padding-top: 2px;
}

.voice-name b {
  font-size: 20px;
  line-height: 1;
}

.voice-name small {
  display: block;
  margin-top: 4px;
  color: rgba(21,18,14,.58);
  font-size: 11px;
  line-height: 1.35;
}

.voice-h {
  min-height: 48px;
  font-size: 17px;
  line-height: 1.38;
}

.voice .voice-q {
  display: block !important;
  height: auto;
  min-height: 68px;
  max-height: none;
  overflow: visible;
  color: rgba(21,18,14,.72);
  font-size: 12.5px;
  line-height: 1.7;
}

.voice-stat {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  margin-bottom: 0;
  padding: 22px 12px 10px;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255,238,178,.24), transparent 5rem),
    linear-gradient(180deg, #b71920, #8b0f14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 14px 28px rgba(125,13,18,.18);
}

.voice-stat::before {
  content: "副収入実績";
  top: 8px;
  left: 12px;
  color: rgba(255,238,178,.8);
  font-size: 10px;
  letter-spacing: .08em;
}

.voice-stat > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 8px;
  align-items: end;
}

.vs-num {
  grid-row: 1 / span 2;
  color: #fff7dc;
  white-space: nowrap;
}

.vs-num b {
  color: #fff7dc;
  font-size: 30px;
  line-height: .9;
}

.vs-num i {
  color: rgba(255,248,221,.9);
  font-size: 12px;
}

.vs-lbl {
  min-width: 0;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  line-height: 1.35;
}

.vs-tag {
  display: none;
}

.ovw-svc {
  height: 374px;
  min-height: 374px;
  align-content: end;
  padding: 24px 20px 24px;
  overflow: hidden;
}

.ovw-svc::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42) 42%, rgba(0,0,0,.86)),
    var(--svc-bg);
  background-size: cover;
  background-position: center;
}

.ovw-svc::after {
  inset: auto 14px 14px;
  height: 0;
  border-color: rgba(240,202,111,.34);
  background:
    linear-gradient(180deg, rgba(12,10,8,.86), rgba(12,10,8,.72)),
    rgba(255,255,255,.06);
  opacity: 0;
  transform: translateY(26px) scale(.98);
  backdrop-filter: blur(10px);
  transition: height .34s ease, opacity .24s ease, transform .34s ease;
}

.ovw-svc:hover::after,
.ovw-svc:focus::after,
.ovw-svc:focus-visible::after {
  height: 264px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ovw-svc-icon,
.ovw-svc-title-c,
.ovw-svc-desc,
.ovw-svc-points {
  position: relative;
  z-index: 1;
}

.ovw-svc-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

.ovw-svc-title-c {
  min-height: auto;
  place-items: center;
  color: #fffaf1;
  font-size: 20px;
  transition: transform .28s ease;
}

.ovw-svc:hover .ovw-svc-title-c,
.ovw-svc:focus .ovw-svc-title-c,
.ovw-svc:focus-visible .ovw-svc-title-c {
  transform: translateY(-4px);
}

.ovw-svc-desc {
  display: block !important;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255,249,235,.92);
  font-size: 12.5px;
  line-height: 1.56;
  opacity: 0;
  transform: translateY(18px);
  transition: max-height .32s ease, margin .32s ease, opacity .22s ease, transform .32s ease;
}

.ovw-svc:hover .ovw-svc-desc,
.ovw-svc:focus .ovw-svc-desc,
.ovw-svc:focus-visible .ovw-svc-desc {
  max-height: 78px;
  margin-top: 8px;
  opacity: 1;
  transform: translateY(0);
}

.ovw-svc-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: max-height .32s ease, margin .32s ease, opacity .22s ease, transform .32s ease;
}

.ovw-svc:hover .ovw-svc-points,
.ovw-svc:focus .ovw-svc-points,
.ovw-svc:focus-visible .ovw-svc-points {
  max-height: 100px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(-2px);
}

.ovw-svc-points li {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border: 1px solid rgba(240,202,111,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,250,235,.92);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

@media (max-width: 980px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }

  .voice {
    max-width: 720px;
    grid-template-columns: 160px minmax(0, 1fr);
    height: 300px;
    min-height: 300px;
  }

  .voice-portrait {
    width: 160px;
    min-height: 272px;
  }
}

@media (max-width: 640px) {
  .voice {
    grid-template-columns: 118px minmax(0, 1fr);
    height: 318px;
    min-height: 318px;
    padding: 12px;
  }

  .voice-portrait {
    width: 118px;
    min-height: 294px;
  }

  .voice-name {
    min-height: 36px;
  }

  .voice-h {
    min-height: 46px;
    font-size: 15.5px;
  }

  .voice .voice-q {
    min-height: 78px;
    font-size: 11.5px;
    line-height: 1.62;
  }

  .voice-stat {
    min-height: 72px;
    padding-inline: 10px;
  }

  .vs-num b {
    font-size: 25px;
  }

  .ovw-svc-grid {
    max-width: 100%;
    grid-auto-flow: column;
    grid-auto-columns: minmax(278px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 18px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .ovw-svc {
    height: 382px;
    min-height: 382px;
    scroll-snap-align: center;
  }

  .ovw-svc::after {
    height: 0;
  }

  .ovw-svc:hover::after,
  .ovw-svc:focus::after,
  .ovw-svc:focus-visible::after {
    height: 268px;
  }

  .ovw-svc-desc {
    max-height: 0;
    font-size: 12px;
    line-height: 1.55;
  }

  .ovw-svc-points {
    max-height: 0;
  }

  .ovw-svc:hover .ovw-svc-desc,
  .ovw-svc:focus .ovw-svc-desc,
  .ovw-svc:focus-visible .ovw-svc-desc {
    max-height: 84px;
  }

  .ovw-svc:hover .ovw-svc-points,
  .ovw-svc:focus .ovw-svc-points,
  .ovw-svc:focus-visible .ovw-svc-points {
    max-height: 92px;
  }
}

/* Motion-only final pass. Layout, colors, and copy remain unchanged. */
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero-static-kicker,
  .motion-ready .cinema-title .line,
  .motion-ready .cinema-sub {
    opacity: 0;
    transform: translateY(24px);
  }

  .motion-ready .hero-still-panel {
    opacity: 0;
    transform: translate(-50%, 24px);
  }

  .motion-ready.motion-live .hero-static-kicker,
  .motion-ready.motion-live .cinema-title .line,
  .motion-ready.motion-live .cinema-sub {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .78s cubic-bezier(.2,.8,.2,1), transform .78s cubic-bezier(.2,.8,.2,1);
  }

  .motion-ready.motion-live .hero-still-panel {
    opacity: 1;
    transform: translate(-50%, 0);
    transition: opacity .78s cubic-bezier(.2,.8,.2,1), transform .78s cubic-bezier(.2,.8,.2,1);
  }

  .motion-ready.motion-live .hero-static-kicker { transition-delay: .08s; }
  .motion-ready.motion-live .cinema-title .line-1 { transition-delay: .18s; }
  .motion-ready.motion-live .cinema-title .line-3 { transition-delay: .3s; }
  .motion-ready.motion-live .cinema-sub { transition-delay: .42s; }
  .motion-ready.motion-live .hero-still-panel { transition-delay: .56s; }

  .hero-still-bg {
    animation: stillHeroBreath 18s ease-in-out infinite alternate;
    transform-origin: center;
  }

  .marker-block::after,
  .marker::after {
    animation: markerGlimmer 4.8s ease-in-out infinite;
  }

  .reveal {
    opacity: 0;
    transform: translateY(34px) scale(.985);
    filter: blur(5px);
    transition:
      opacity .72s cubic-bezier(.2,.8,.2,1),
      transform .72s cubic-bezier(.2,.8,.2,1),
      filter .72s cubic-bezier(.2,.8,.2,1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .reveal-stagger > *,
  .rsn-list.reveal-stagger > *,
  .proc-list.reveal-stagger > *,
  .voices-grid.reveal-stagger > *,
  .faq-list.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px) scale(.985);
    filter: blur(5px);
    transition:
      opacity .68s cubic-bezier(.2,.8,.2,1),
      transform .68s cubic-bezier(.2,.8,.2,1),
      filter .68s cubic-bezier(.2,.8,.2,1);
  }

  .reveal-stagger.is-visible > *,
  .rsn-list.reveal-stagger.is-visible > *,
  .proc-list.reveal-stagger.is-visible > *,
  .voices-grid.reveal-stagger.is-visible > *,
  .faq-list.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
  .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
  .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
  .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
  .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }
  .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .48s; }

  .trust-card,
  .prob,
  .ovw-stat,
  .rsn,
  .comp-card,
  .proc-card,
  .voice,
  .faq-item,
  .apply-step,
  .final-wrap {
    transition:
      transform .34s cubic-bezier(.2,.8,.2,1),
      box-shadow .34s cubic-bezier(.2,.8,.2,1),
      border-color .34s cubic-bezier(.2,.8,.2,1),
      filter .34s cubic-bezier(.2,.8,.2,1);
  }

  .trust-card:hover,
  .prob:hover,
  .ovw-stat:hover,
  .rsn:hover,
  .comp-card:hover,
  .proc-card:hover,
  .voice:hover,
  .faq-item:hover,
  .apply-step:hover {
    transform: translateY(-6px);
    filter: saturate(1.03);
  }

  .trust-card-laurel svg,
  .comp-crown,
  .voice-stat::before,
  .final-tag,
  .promise-stamp {
    animation: goldSoftPulse 4.6s ease-in-out infinite;
  }

  .prob-check,
  .proc-circle,
  .booking-step-dot.active {
    animation: quietPulse 3.8s ease-in-out infinite;
  }

  .btn-cta,
  .cta-band-btn,
  .booking-btn-next,
  .booking-btn-submit {
    animation: ctaLift 4.8s ease-in-out infinite;
  }

  .ovw-svc::before,
  .voice-portrait .photo-ph {
    animation: imageBreath 16s ease-in-out infinite alternate;
  }

  .ovw-svc:nth-child(2)::before,
  .voice:nth-child(2) .photo-ph { animation-delay: -3s; }
  .ovw-svc:nth-child(3)::before,
  .voice:nth-child(3) .photo-ph { animation-delay: -6s; }
  .ovw-svc:nth-child(4)::before { animation-delay: -9s; }

  .ovw-svc:hover::before,
  .ovw-svc:focus::before,
  .ovw-svc:focus-visible::before {
    animation: none;
    transform: scale(1.1);
  }
}

@keyframes stillHeroBreath {
  from { transform: scale(1.01); filter: saturate(1) contrast(1); }
  to { transform: scale(1.055); filter: saturate(1.04) contrast(1.03); }
}

@keyframes markerGlimmer {
  0%, 78%, 100% { opacity: .62; transform: scaleX(1); }
  88% { opacity: .92; transform: scaleX(1.04); }
}

@keyframes goldSoftPulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(240,202,111,0)); opacity: 1; }
  48% { filter: drop-shadow(0 0 10px rgba(240,202,111,.28)); opacity: .96; }
}

@keyframes quietPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes ctaLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes imageBreath {
  from { transform: scale(1.04); }
  to { transform: scale(1.09); }
}

/* 2026-06-10: keep the three reason-card badge rows on the same baseline. */
.rsn,
.rsn.rsn-l,
.rsn.rsn-r {
  grid-template-rows: auto minmax(0, 1fr);
}

.rsn-body {
  height: 100%;
  grid-template-rows: auto minmax(82px, auto) minmax(154px, 1fr) auto;
  align-content: stretch;
}

.rsn-bullets {
  width: 100%;
  align-self: end;
  align-items: end;
}

.rsn-bullets li {
  width: 100%;
  align-self: end;
}

@media (max-width: 980px) {
  .rsn-body {
    grid-template-rows: auto auto auto auto;
  }
}

/* 2026-06-10: premium glow for the final image CTA and always-on floating CTA. */
.final-camp-hotspot {
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 224, 160, .2),
    0 0 24px rgba(214, 24, 27, .34),
    0 0 58px rgba(240, 202, 111, .2);
  animation: finalCtaGlow 2.8s ease-in-out infinite;
}

.final-camp-hotspot::before,
.final-camp-hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.final-camp-hotspot::before {
  background:
    radial-gradient(circle at 82% 48%, rgba(255,255,255,.22), transparent 12%),
    linear-gradient(180deg, rgba(255,232,168,.12), transparent 48%, rgba(255,255,255,.06));
  mix-blend-mode: screen;
}

.final-camp-hotspot::after {
  inset: -18% auto -18% -44%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg);
  animation: ctaShineSweep 3.4s ease-in-out infinite;
}

.fixed-bar,
.fixed-bar.is-on {
  display: block;
  left: 50%;
  right: auto;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 120;
  width: min(620px, calc(100vw - 28px));
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.fixed-bar-inner {
  position: relative;
}

.fixed-bar-inner::before {
  content: "";
  position: absolute;
  inset: 8px 18px -8px;
  border-radius: 999px;
  background: rgba(214, 24, 27, .42);
  filter: blur(24px);
  opacity: .72;
  pointer-events: none;
  animation: floatingCtaAura 2.8s ease-in-out infinite;
}

.fixed-bar-btn {
  position: relative;
  min-height: 66px;
  overflow: hidden;
  border: 1px solid rgba(255, 224, 160, .52);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 38%),
    linear-gradient(180deg, #df2429, #8f0c10);
  box-shadow:
    0 18px 54px rgba(214, 24, 27, .48),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 -6px 0 rgba(0,0,0,.25) inset;
  font-family: var(--f-serif);
  font-size: clamp(17px, 2.1vw, 24px);
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.32);
  animation: floatingCtaGlow 2.8s ease-in-out infinite;
}

.fixed-bar-btn::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  transform: skewX(-18deg);
  animation: ctaShineSweep 3.2s ease-in-out infinite;
}

.fixed-bar-btn svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  padding: 9px;
  box-sizing: content-box;
  border-radius: 50%;
  color: #a20d12;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.fixed-bar-btn {
  isolation: isolate;
}

.fixed-bar-btn > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .fixed-bar,
  .fixed-bar.is-on {
    bottom: max(12px, env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
  }

  .fixed-bar-btn {
    min-height: 58px;
    gap: 8px;
    padding-inline: 18px;
    font-size: 15px;
  }

  .fixed-bar-btn svg {
    width: 16px;
    height: 16px;
    padding: 8px;
  }
}

@keyframes finalCtaGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 224, 160, .2),
      0 0 24px rgba(214, 24, 27, .34),
      0 0 58px rgba(240, 202, 111, .2);
    filter: saturate(1);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 224, 160, .52),
      0 0 34px rgba(237, 42, 45, .66),
      0 0 86px rgba(240, 202, 111, .42);
    filter: saturate(1.08);
  }
}

@keyframes floatingCtaGlow {
  0%, 100% {
    box-shadow:
      0 18px 54px rgba(214, 24, 27, .48),
      0 0 0 1px rgba(255,255,255,.08) inset,
      0 -6px 0 rgba(0,0,0,.25) inset;
  }
  50% {
    box-shadow:
      0 22px 70px rgba(214, 24, 27, .66),
      0 0 42px rgba(240, 202, 111, .38),
      0 0 0 1px rgba(255,255,255,.15) inset,
      0 -6px 0 rgba(0,0,0,.25) inset;
  }
}

@keyframes floatingCtaAura {
  0%, 100% { opacity: .58; transform: scaleX(.96); }
  50% { opacity: .88; transform: scaleX(1.03); }
}

@keyframes ctaShineSweep {
  0%, 38% { left: -46%; opacity: 0; }
  48% { opacity: .72; }
  68%, 100% { left: 114%; opacity: 0; }
}

/* 2026-06-10: iPhone-only polish for cleaner line breaks and compact CTA UI. */
.sp-only-br {
  display: none;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
  }

  .sp-only-br {
    display: inline;
  }

  .shell {
    padding-inline: 18px;
  }

  .problems .sec-head {
    gap: 14px;
  }

  .problems .sec-title {
    font-size: clamp(31px, 9.2vw, 37px);
    line-height: 1.26;
    text-wrap: balance;
  }

  .problems .sec-title .marker {
    line-height: 1.28;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .problems .sec-lead {
    max-width: 21em;
    margin-inline: auto;
    font-size: 14.5px;
    line-height: 1.9;
  }

  .hero-cta-band {
    padding-block: 16px;
  }

  .cta-band-text {
    padding-inline: 0;
  }

  .cta-band-line {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    max-width: min(330px, calc(100vw - 42px));
    align-items: center;
    justify-content: start;
    font-size: 17px;
    line-height: 1.32;
    text-align: left;
  }

  .cta-band-line::before {
    grid-row: 1 / 3;
    grid-column: 1;
    width: 40px;
    height: 40px;
    margin: 0 !important;
  }

  .cta-band-main,
  .cta-band-sub {
    grid-column: 2;
    white-space: nowrap;
  }

  .cta-band-sep {
    display: none;
  }

  .prob-list {
    padding-bottom: 8px;
  }

  .prob {
    min-height: 156px;
    padding: 20px 16px 18px;
  }

  .prob-text {
    min-height: 68px;
    font-size: 13.5px;
    line-height: 1.58;
  }

  .rsn,
  .rsn.rsn-l,
  .rsn.rsn-r {
    padding-inline: 18px;
  }

  .rsn-lead {
    font-size: 23px;
    line-height: 1.34;
    text-wrap: balance;
  }

  .rsn-text {
    font-size: 13px;
    line-height: 1.78;
  }

  .rsn-bullets {
    gap: 8px;
  }

  .rsn-bullets li {
    padding: 10px 6px;
    font-size: 10.4px;
    line-height: 1.34;
  }

  .proc .sec-title {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.22;
  }

  .proc .sec-lead {
    font-size: 14px;
    line-height: 1.75;
  }

  .voices .sec-title {
    font-size: clamp(35px, 9.8vw, 42px);
    line-height: 1.24;
  }

  .voice {
    grid-template-columns: 100px minmax(0, 1fr);
    height: auto;
    min-height: 304px;
    padding: 12px;
    row-gap: 7px;
  }

  .voice-portrait {
    width: 100px;
    min-height: 280px;
  }

  .voice-name {
    min-height: 34px;
  }

  .voice-name b {
    font-size: 18px;
  }

  .voice-name small {
    font-size: 10.5px;
  }

  .voice-h {
    min-height: auto;
    font-size: 15.8px;
    line-height: 1.38;
  }

  .voice .voice-q {
    min-height: auto;
    font-size: 11.8px;
    line-height: 1.62;
  }

  .voice-stat {
    min-height: 70px;
    padding: 20px 10px 9px;
  }

  .vs-num b {
    font-size: 27px;
  }

  .booking-step-indicator {
    width: 100%;
    grid-template-columns: 1fr 18px 1fr 18px 1fr;
    align-items: center;
    gap: 6px;
    margin: 18px auto;
    padding: 14px 12px;
  }

  .booking-step-line {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .booking-step-dot {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 4px;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
  }

  .booking-step-dot span {
    font-size: 16px;
  }

  .booking-step-dot::after {
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: 0;
  }

  .booking-panel {
    padding: 20px 14px 28px;
  }

  .booking-panel-label {
    font-size: 15px;
    line-height: 1.6;
  }

  .date-card {
    min-height: 72px;
  }

  .date-card-inner {
    gap: 12px;
    padding: 16px 14px;
  }

  .date-card-label {
    font-size: 17px;
    line-height: 1.45;
  }

  .date-card-sub {
    font-size: 12px;
  }

  .booking-actions {
    flex-direction: column;
  }

  .booking-btn-back,
  .booking-btn-next {
    width: 100%;
  }

  .fixed-bar,
  .fixed-bar.is-on {
    width: min(342px, calc(100vw - 28px));
  }

  .fixed-bar-btn {
    min-height: 52px;
    padding-inline: 14px;
    gap: 8px;
    font-size: 14.2px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .fixed-bar-btn svg {
    width: 15px;
    height: 15px;
    padding: 7px;
  }
}

@media (max-width: 374px) {
  .cta-band-line {
    max-width: calc(100vw - 36px);
    font-size: 16px;
  }

  .fixed-bar-btn {
    font-size: 13.4px;
  }

  .voice {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .voice-portrait {
    width: 92px;
  }
}

/* 2026-06-10: mobile fit pass. Keep the page readable without sideways swiping. */
@media (max-width: 640px) {
  html,
  body,
  #app {
    max-width: 100%;
    overflow-x: clip;
  }

  .cinema-hero,
  .hero-stage.cinema-hero.still-hero {
    min-height: min(720px, 100svh);
    overflow: hidden;
  }

  .hero-still-bg {
    inset: 0 !important;
    transform: none !important;
    animation: none !important;
    background:
      linear-gradient(180deg, rgba(0,0,0,.26), rgba(0,0,0,.62) 45%, rgba(0,0,0,.86)),
      url("/assets/images/skima-fp-hero-still-v2.png") 43% center / cover no-repeat !important;
  }

  .hero-still-panel {
    max-width: calc(100vw - 28px);
    padding-inline: 14px;
  }

  .hero-still-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-still-points span {
    min-width: 0;
    padding: 10px 6px;
    font-size: 10.5px;
    white-space: nowrap;
  }

  .hero-btn {
    max-width: min(100%, 310px);
  }

  .problems .shell,
  .overview .shell,
  .comp .shell,
  .proc .shell {
    overflow-x: visible !important;
  }

  .prob-list {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .prob {
    min-width: 0;
    min-height: 152px;
    padding: 18px 10px 16px;
  }

  .prob-text {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .overview .sec-title {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.22;
    text-wrap: balance;
  }

  .ovw-svc-title {
    max-width: 100%;
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.28;
    letter-spacing: 0;
    white-space: normal;
  }

  .ovw-svc-title > span {
    display: block;
  }

  .ovw-svc-grid {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    grid-template-columns: 1fr !important;
    gap: 14px;
    overflow-x: visible !important;
    padding: 0 0 4px;
    scroll-snap-type: none;
  }

  .ovw-svc {
    width: 100%;
    min-width: 0;
    height: 300px;
    min-height: 300px;
    scroll-snap-align: none;
  }

  .comp-podium {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns: minmax(78px, .78fr) minmax(0, 1.22fr) !important;
    overflow: hidden !important;
  }

  .comp-podium > :nth-child(n+3),
  .comp-col-other {
    display: none !important;
  }

  .comp-col-labels,
  .comp-col-us {
    min-width: 0;
  }

  .comp-label-head,
  .comp-col-head {
    min-height: 78px;
    padding: 16px 8px;
  }

  .comp-label-row,
  .comp-cell {
    min-width: 0;
    min-height: 72px;
    padding: 12px 8px;
  }

  .comp-label-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
  }

  .comp-cell.us {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
  }

  .comp-label-num {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .comp-mark.us {
    width: 22px;
    height: 22px;
  }

  .comp-val b {
    font-size: 15px;
    line-height: 1.25;
  }

  .comp-val small {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .comp-col-name,
  .comp-name {
    font-size: 22px;
  }

  .comp-col-tag,
  .comp-name small {
    font-size: 10px;
  }

  .comp-best {
    font-size: 20px;
    letter-spacing: .06em;
  }

  .comp-label-foot,
  .comp-col-foot {
    min-height: 58px;
    padding: 12px 8px;
  }

  .proc-list {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    overflow: visible !important;
  }

  .proc-list::before {
    display: none;
  }

  .proc-item {
    grid-template-rows: auto 1fr;
    height: auto;
  }

  .proc-rail {
    height: auto;
    margin-bottom: -28px;
  }

  .proc-circle {
    width: 58px;
    height: 58px;
  }

  .proc-card {
    min-height: 0;
    padding: 92px 18px 20px;
  }

  .proc-card::before {
    height: 74px;
  }

  .proc-card-title {
    min-height: 0;
    font-size: 16px;
  }

  .proc-desc {
    min-height: 0;
    font-size: 12.5px;
  }

  .rsn {
    overflow: hidden;
  }

  .rsn::after {
    right: -98px;
    bottom: -96px;
    width: 190px;
    height: 190px;
  }

  .rsn-bullets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .rsn-bullets li {
    min-width: 0;
    padding: 9px 4px;
    font-size: 10px;
  }

  .marquee {
    overflow: hidden;
  }
}

@media (max-width: 374px) {
  .prob-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .prob {
    min-height: 132px;
  }

  .comp-podium {
    grid-template-columns: 76px minmax(0, 1fr) !important;
  }

  .comp-label-row {
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .comp-label-num {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .comp-val b {
    font-size: 14px;
  }
}

@media (max-width: 340px) {
  .prob-list {
    grid-template-columns: 1fr !important;
  }
}

/* 2026-06-10: responsive horizontal pass. Preserve the PC visual structure on mobile. */
@media (max-width: 640px) {
  .cinema-hero,
  .hero-stage.cinema-hero.still-hero {
    width: 100%;
    max-width: 100vw;
    min-height: min(720px, 100svh);
    overflow: hidden;
    contain: paint;
  }

  .hero-still-bg {
    inset: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    transform: none !important;
    animation: none !important;
    background:
      linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.58) 45%, rgba(0,0,0,.86)),
      url("/assets/images/skima-fp-hero-still-v2.png") 50% center / cover no-repeat !important;
  }

  .cinema-copy {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
  }

  .cinema-title {
    max-width: 100%;
    font-size: clamp(48px, 13.4vw, 62px);
  }

  .hero-still-panel {
    width: min(100%, 390px);
    max-width: calc(100vw - 28px);
  }

  .ovw-svc-title > span {
    display: inline;
  }

  .ovw-svc-title {
    white-space: nowrap;
    font-size: clamp(25px, 6.8vw, 31px);
  }

  .ovw-svc-grid {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow-x: visible !important;
    padding: 0 0 4px !important;
    scroll-snap-type: none !important;
  }

  .ovw-svc {
    width: 100% !important;
    min-width: 0 !important;
    height: 224px !important;
    min-height: 224px !important;
    padding: 16px 10px 14px;
    border-radius: 8px;
    scroll-snap-align: none;
  }

  .ovw-svc::before {
    transform: scale(1.02);
  }

  .ovw-svc:hover::before,
  .ovw-svc:focus::before,
  .ovw-svc:focus-visible::before {
    transform: scale(1.06);
  }

  .ovw-svc-icon {
    width: 38px;
    height: 38px;
  }

  .ovw-svc-title-c {
    font-size: 14px;
    line-height: 1.35;
  }

  .ovw-svc-desc {
    font-size: 10px;
    line-height: 1.45;
  }

  .ovw-svc-points {
    gap: 4px;
  }

  .ovw-svc-points li {
    font-size: 9px;
    line-height: 1.2;
    padding: 4px 5px;
  }

  .comp-podium {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns:
      minmax(66px, .72fr)
      minmax(104px, 1.16fr)
      minmax(74px, .82fr)
      minmax(74px, .82fr) !important;
    overflow: hidden !important;
  }

  .comp-podium > :nth-child(n+3),
  .comp-col-other {
    display: grid !important;
  }

  .comp-col {
    min-width: 0 !important;
  }

  .comp-label-head,
  .comp-col-head {
    min-height: 68px;
    padding: 10px 4px;
  }

  .comp-label-row,
  .comp-cell {
    display: grid !important;
    min-width: 0;
    min-height: 68px;
    padding: 9px 4px;
    align-items: center;
  }

  .comp-label-row {
    grid-template-columns: 1fr !important;
    gap: 3px;
    justify-items: center;
    align-content: center;
    text-align: center;
  }

  .comp-label-tag {
    font-size: 12px;
    letter-spacing: .12em;
  }

  .comp-label-row .comp-label-num,
  .comp-label-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .comp-label-text {
    max-width: 100%;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .comp-col-name,
  .comp-name {
    font-size: 14px;
    line-height: 1.12;
    letter-spacing: 0;
    word-break: keep-all;
  }

  .comp-col-us .comp-col-name,
  .comp-col-us .red {
    font-size: 18px;
  }

  .comp-col-tag,
  .comp-name small {
    font-size: 7px;
    letter-spacing: .08em;
  }

  .comp-best {
    font-size: 11px;
    letter-spacing: .08em;
  }

  .comp-cell,
  .comp-cell.us {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 4px;
  }

  .comp-mark,
  .comp-mark.us {
    width: 16px;
    height: 16px;
  }

  .comp-val,
  .comp-col-us .comp-val,
  .comp-cell:not(.us) .comp-val {
    display: block !important;
    min-width: 0;
    width: auto !important;
    max-width: 100%;
    overflow: hidden;
    font-size: 9.5px;
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .comp-val b,
  .comp-col-us .comp-val b {
    width: auto !important;
    max-width: 100%;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .comp-val small,
  .comp-col-us .comp-val small {
    width: auto !important;
    max-width: 100%;
    overflow: hidden;
    font-size: 8px;
    line-height: 1.3;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .comp-label-foot,
  .comp-col-foot {
    min-height: 46px;
    padding: 8px 4px;
  }

  .comp-col-foot.us::before {
    font-size: 13px;
    letter-spacing: .1em;
    white-space: nowrap;
  }

  .comp-cta-mini {
    font-size: 9px;
    gap: 4px;
  }

  .proc-list {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 7px !important;
    overflow: visible !important;
  }

  .proc-list::before,
  .proc-item:not(:last-child)::after {
    display: none !important;
  }

  .proc-item {
    min-width: 0;
    grid-template-rows: auto 1fr;
    gap: 0;
    height: auto;
  }

  .proc-rail {
    height: auto;
    margin-bottom: -18px;
    position: relative;
    z-index: 2;
  }

  .proc-circle {
    width: 40px;
    height: 40px;
  }

  .proc-circle small {
    font-size: 6px;
    line-height: 1;
  }

  .proc-circle b {
    font-size: 15px;
    line-height: 1;
  }

  .proc-card {
    min-width: 0;
    min-height: 156px;
    height: 100%;
    padding: 54px 5px 9px;
    border-radius: 8px;
  }

  .proc-card::before {
    height: 50px;
  }

  .proc-card-head {
    gap: 5px;
  }

  .proc-card-title {
    min-height: 46px;
    font-size: 9px;
    line-height: 1.18;
    letter-spacing: 0;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .proc-meta {
    gap: 3px;
    justify-content: center;
  }

  .proc-time,
  .proc-tag {
    padding: 3px 4px;
    font-size: 7.5px;
    line-height: 1.1;
  }

  .proc-desc {
    display: none;
  }
}

@media (max-width: 374px) {
  .cinema-title {
    font-size: clamp(44px, 13vw, 56px);
  }

  .ovw-svc-title {
    font-size: clamp(23px, 6.6vw, 28px);
  }

  .ovw-svc-grid {
    gap: 8px !important;
  }

  .ovw-svc {
    height: 208px !important;
    min-height: 208px !important;
    padding: 14px 8px 12px;
  }

  .ovw-svc-title-c {
    font-size: 12.5px;
  }

  .comp-podium {
    grid-template-columns:
      minmax(58px, .68fr)
      minmax(96px, 1.16fr)
      minmax(66px, .8fr)
      minmax(66px, .8fr) !important;
  }

  .comp-label-row,
  .comp-cell {
    min-height: 64px;
    padding-inline: 3px;
  }

  .comp-label-row {
    grid-template-columns: 1fr !important;
    gap: 2px;
  }

  .comp-label-row .comp-label-num,
  .comp-label-num {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .comp-mark,
  .comp-mark.us {
    width: 14px;
    height: 14px;
  }

  .comp-label-text {
    font-size: 8px;
  }

  .comp-col-us .comp-col-name,
  .comp-col-us .red {
    font-size: 16px;
  }

  .comp-col-name,
  .comp-name {
    font-size: 12px;
  }

  .comp-val,
  .comp-cell:not(.us) .comp-val {
    font-size: 8.5px;
  }

  .comp-val b {
    font-size: 9.5px;
  }

  .comp-val small {
    font-size: 7px;
  }

  .proc-list {
    gap: 5px !important;
  }

  .proc-circle {
    width: 36px;
    height: 36px;
  }

  .proc-card {
    min-height: 146px;
    padding: 50px 4px 8px;
  }

  .proc-card::before {
    height: 46px;
  }

  .proc-card-title {
    font-size: 8.3px;
    min-height: 45px;
  }

  .proc-time,
  .proc-tag {
    font-size: 7px;
    padding-inline: 3px;
  }
}

/* 2026-06-10: researched mobile clean pass. Mobile gets a readable LP layout, not a squeezed desktop table. */
.comp-mobile {
  display: none;
}

@media (max-width: 640px) {
  html,
  body,
  #app {
    max-width: 100%;
    overflow-x: clip;
  }

  .shell {
    padding-inline: 20px;
  }

  .sec-head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
  }

  .sec-lead {
    max-width: 26em;
    margin-inline: auto;
    font-size: 14.5px;
    line-height: 1.85;
  }

  .cinema-hero,
  .hero-stage.cinema-hero.still-hero {
    min-height: min(730px, 100svh);
    max-width: 100vw;
    overflow: hidden;
    contain: paint;
  }

  .hero-still-bg {
    inset: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    transform: none !important;
    animation: none !important;
    background:
      linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.54) 46%, rgba(0,0,0,.88)),
      url("/assets/images/skima-fp-hero-still-v2.png") 52% center / cover no-repeat !important;
  }

  .cinema-copy {
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
  }

  .hero-static-kicker {
    font-size: 13px;
    line-height: 1.7;
    white-space: nowrap;
  }

  .cinema-title {
    max-width: 100%;
    font-size: clamp(43px, 12vw, 54px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .cinema-title .line {
    display: block;
  }

  .cinema-sub {
    font-size: clamp(23px, 6.25vw, 29px);
    line-height: 1.35;
  }

  .hero-still-panel {
    width: min(100%, 360px);
    max-width: calc(100vw - 32px);
    padding-inline: 12px;
  }

  .hero-still-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-still-points span {
    min-width: 0;
    min-height: 44px;
    padding: 9px 5px;
    font-size: 10.5px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .hero-btn {
    width: 100%;
    max-width: 330px;
    min-height: 64px;
    padding-inline: 22px;
    font-size: 18px;
  }

  .problems .sec-title {
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.24;
  }

  .prob-list {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .prob {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    min-height: 74px;
    padding: 14px 16px;
    text-align: left;
    border-radius: 8px;
  }

  .prob-check {
    position: static !important;
    grid-column: 1;
    width: 30px;
    height: 30px;
    transform: none !important;
  }

  .prob-num {
    display: none;
  }

  .prob-text {
    grid-column: 2;
    min-height: 0;
    font-size: 14px;
    line-height: 1.58;
  }

  .overview .sec-title {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.22;
  }

  .ovw-svc-title {
    font-size: clamp(31px, 8.5vw, 38px);
    line-height: 1.24;
    white-space: normal;
    text-wrap: balance;
  }

  .ovw-svc-title > span {
    display: block;
  }

  .ovw-svc-grid {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    overflow-x: visible !important;
    padding: 0 0 4px !important;
    scroll-snap-type: none !important;
  }

  .ovw-svc {
    width: 100% !important;
    min-width: 0 !important;
    height: 246px !important;
    min-height: 246px !important;
    padding: 18px 10px 15px;
    border-radius: 8px;
    scroll-snap-align: none;
  }

  .ovw-svc::before {
    transform: scale(1.02);
  }

  .ovw-svc-icon {
    width: 42px;
    height: 42px;
  }

  .ovw-svc-title-c {
    font-size: 14.5px;
    line-height: 1.38;
  }

  .ovw-svc-desc,
  .ovw-svc-points {
    display: none;
  }

  .comp .sec-title,
  .proc .sec-title {
    font-size: clamp(31px, 8.2vw, 36px);
    line-height: 1.24;
    text-wrap: balance;
  }

  .comp-podium {
    display: none !important;
  }

  .comp-mobile {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: 100%;
  }

  .comp-mobile-best {
    position: relative;
    overflow: hidden;
    padding: 24px 20px 20px;
    border: 1px solid rgba(225, 178, 86, .42);
    border-radius: 8px;
    background:
      radial-gradient(circle at 80% 0%, rgba(225,178,86,.22), transparent 32%),
      linear-gradient(145deg, rgba(70,45,22,.96), rgba(24,20,16,.96));
    box-shadow: 0 22px 62px rgba(0,0,0,.34);
  }

  .comp-mobile-ribbon {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(198, 20, 24, .94);
    color: #fff;
    font-family: var(--f-sans);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
  }

  .comp-mobile-best h3 {
    margin: 13px 0 8px;
    color: var(--c-highlight);
    font-family: var(--f-serif);
    font-size: 34px;
    line-height: 1.05;
  }

  .comp-mobile-best p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.75;
  }

  .comp-mobile-best ul {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
  }

  .comp-mobile-best li {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
  }

  .comp-mobile-best li::before {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 35% 28%, #fff, transparent 18%),
      linear-gradient(180deg, #e9c36b, #9b6a23);
    box-shadow: 0 0 18px rgba(225,178,86,.34);
  }

  .comp-mobile-rows {
    display: grid;
    gap: 10px;
  }

  .comp-mobile-row {
    display: grid;
    gap: 7px;
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  }

  .comp-mobile-row span {
    color: var(--c-highlight);
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
  }

  .comp-mobile-row b {
    color: #fff;
    font-family: var(--f-serif);
    font-size: 17px;
    line-height: 1.35;
  }

  .comp-mobile-row small {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    line-height: 1.65;
  }

  .proc-list {
    position: relative;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    overflow: visible !important;
  }

  .proc-list::before,
  .proc-item:not(:last-child)::after {
    display: none !important;
  }

  .proc-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
    height: auto;
  }

  .proc-rail {
    height: 100%;
    margin: 0;
    align-items: start;
    padding-top: 12px;
  }

  .proc-circle {
    width: 52px;
    height: 52px;
  }

  .proc-circle small {
    font-size: 7px;
  }

  .proc-circle b {
    font-size: 19px;
  }

  .proc-card {
    min-height: 178px;
    height: auto;
    padding: 98px 15px 17px;
    border-radius: 8px;
  }

  .proc-card::before {
    height: 82px;
  }

  .proc-card-title {
    min-height: 0;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .proc-meta {
    justify-content: start;
    gap: 6px;
  }

  .proc-time,
  .proc-tag {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 10px;
    line-height: 1.1;
  }

  .proc-desc {
    display: block;
    min-height: 0;
    margin-top: 12px;
    font-size: 12.5px;
    line-height: 1.72;
  }
}

@media (max-width: 374px) {
  .shell {
    padding-inline: 18px;
  }

  .cinema-title {
    font-size: clamp(40px, 11.5vw, 49px);
  }

  .hero-static-kicker {
    font-size: 12px;
  }

  .hero-btn {
    min-height: 60px;
    font-size: 16px;
  }

  .hero-still-points span {
    font-size: 9.5px;
  }

  .ovw-svc-grid {
    gap: 10px !important;
  }

  .ovw-svc {
    height: 226px !important;
    min-height: 226px !important;
  }

  .ovw-svc-title-c {
    font-size: 13px;
  }

  .comp-mobile-best h3 {
    font-size: 31px;
  }

  .proc-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 10px;
  }

  .proc-circle {
    width: 48px;
    height: 48px;
  }
}

/* ============================================================
   LINE LP variant
   ============================================================ */
.line-lp {
  --line-green: #06c755;
  --line-green-deep: #028a3d;
}

.line-lp .live-pill,
.line-lp .comp-cta-mini {
  border-color: rgba(6, 199, 85, .45);
  color: #d8ffe7;
  box-shadow: 0 0 18px rgba(6, 199, 85, .18);
}

.line-lp .btn-cta[href*="lin.ee"],
.line-lp .fixed-bar-btn {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, var(--line-green), var(--line-green-deep));
  border-color: rgba(216, 255, 231, .35);
  box-shadow:
    inset 0 -4px 0 rgba(0, 0, 0, .22),
    0 18px 42px rgba(6, 199, 85, .28),
    0 0 34px rgba(6, 199, 85, .22);
}

.line-lp .btn-cta[href*="lin.ee"]::after,
.line-lp .fixed-bar-btn::after,
.line-final-btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 34%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  animation: lineShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lineShine {
  0%, 32% { left: -45%; opacity: 0; }
  48% { opacity: 1; }
  70%, 100% { left: 120%; opacity: 0; }
}

.line-final-wrap {
  max-width: 900px;
  color: #f6f3eb;
}

.line-final-visual {
  position: relative;
}

.line-final-visual img {
  filter: brightness(.74) saturate(.9);
}

.line-final-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18%;
  z-index: 1;
  width: min(82%, 660px);
  min-height: clamp(58px, 7vw, 88px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .5), rgba(0, 0, 0, .18) 58%, transparent 72%),
    linear-gradient(90deg, rgba(0, 0, 0, .22), rgba(6, 199, 85, .2), rgba(0, 0, 0, .22));
  pointer-events: none;
}

.line-final-visual::after {
  content: "LINEで詳細を受け取る";
  position: absolute;
  left: 50%;
  bottom: 16.5%;
  z-index: 2;
  width: min(58%, 620px);
  min-height: clamp(46px, 6vw, 72px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid rgba(216, 255, 231, .42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, var(--line-green), var(--line-green-deep));
  color: #fff;
  font-weight: 900;
  font-size: clamp(14px, 2.4vw, 28px);
  letter-spacing: .02em;
  box-shadow:
    inset 0 -4px 0 rgba(0, 0, 0, .22),
    0 18px 44px rgba(6, 199, 85, .35),
    0 0 38px rgba(6, 199, 85, .28);
  pointer-events: none;
}

.line-final-wrap .final-tag {
  display: inline-block;
  color: var(--c-highlight);
}

.line-final-wrap .final-title {
  display: block;
  color: #fffaf1;
}

.line-final-wrap .final-lead {
  display: block;
  color: rgba(246, 243, 235, .78);
}

.line-final-wrap .final-lead b {
  color: #fffaf1;
}

.line-final-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px auto 30px;
}

.line-final-benefits div {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  padding: 22px 18px;
  border: 1px solid rgba(202, 163, 86, .34);
  background:
    radial-gradient(circle at 50% 0%, rgba(202, 163, 86, .14), transparent 58%),
    rgba(255, 255, 255, .045);
  border-radius: 8px;
  text-align: left;
}

.line-final-benefits span {
  display: block;
  font-family: var(--f-num);
  font-size: 15px;
  letter-spacing: .08em;
  color: var(--c-highlight);
}

.line-final-benefits b {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.35;
  color: #fffaf1;
}

.line-final-benefits small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(246, 243, 235, .68);
}

.line-final-btn {
  width: min(100%, 620px);
  min-height: 76px;
  margin: 0 auto;
  font-size: clamp(19px, 4vw, 28px);
}

.line-final-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(246, 243, 235, .72);
  text-align: center;
}

@media (max-width: 640px) {
  .line-final-wrap {
    padding-inline: 20px;
  }

  .line-final-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0 26px;
  }

  .line-final-benefits div {
    min-height: 0;
    padding: 17px 18px;
  }

  .line-final-benefits b {
    margin-top: 8px;
    font-size: 16px;
  }

  .line-final-btn {
    min-height: 64px;
    font-size: 17px;
  }

  .line-lp .fixed-bar-btn {
    font-size: 14px;
  }
}

/* ============================================================
   2026-06-14 mobile typography polish
   ============================================================ */
@media (max-width: 640px) {
  .comp,
  .proc {
    overflow: hidden;
  }

  .comp .sec-head,
  .proc .sec-head {
    margin-bottom: 22px;
  }

  .comp .sec-title,
  .proc .sec-title {
    max-width: 12em;
    margin-inline: auto;
    font-size: clamp(29px, 7.6vw, 34px);
    line-height: 1.3;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .comp .sec-title .marker,
  .proc .sec-title .marker {
    padding-inline: .08em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .comp .sec-title .marker {
    background: linear-gradient(transparent 72%, rgba(215,173,74,.44) 0) !important;
  }

  .proc .sec-title .marker {
    background: linear-gradient(transparent 72%, rgba(185,21,22,.34) 0) !important;
  }

  .comp .sec-lead,
  .proc .sec-lead {
    max-width: 22.5em;
    font-size: 13.5px;
    line-height: 1.8;
  }

  .comp-mobile {
    gap: 12px;
  }

  .comp-mobile-best {
    padding: 22px 18px 18px;
  }

  .comp-mobile-ribbon {
    min-height: 26px;
    font-size: 9px;
    letter-spacing: .16em;
  }

  .comp-mobile-best h3 {
    margin: 12px 0 8px;
    font-size: clamp(31px, 8vw, 34px);
    line-height: 1.12;
  }

  .comp-mobile-best p {
    font-size: 12.5px;
    line-height: 1.85;
  }

  .comp-mobile-best ul {
    gap: 7px;
    margin-top: 14px;
  }

  .comp-mobile-best li {
    grid-template-columns: 20px 1fr;
    gap: 8px;
    font-size: 12.5px;
    line-height: 1.55;
  }

  .comp-mobile-best li::before {
    width: 20px;
    height: 20px;
  }

  .comp-mobile-row {
    gap: 6px;
    padding: 14px 15px;
  }

  .comp-mobile-row span {
    font-size: 10.5px;
  }

  .comp-mobile-row b {
    font-size: 15.5px;
    line-height: 1.52;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .comp-mobile-row small {
    font-size: 11.5px;
    line-height: 1.72;
  }

  .proc-list {
    gap: 16px !important;
    padding-bottom: 8px;
  }

  .proc-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .proc-rail {
    padding-top: 8px;
  }

  .proc-circle {
    width: 46px;
    height: 46px;
    border-width: 1px;
  }

  .proc-circle small {
    display: none;
  }

  .proc-circle b {
    font-size: 18px;
  }

  .proc-card {
    display: grid;
    grid-template-rows: 76px auto;
    gap: 0;
    min-height: 0;
    height: auto;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(180deg, #fffaf2, #f3eadc);
  }

  .proc-card::before {
    position: static;
    display: block;
    width: 100%;
    height: 76px !important;
    min-height: 76px;
    border-radius: 0;
    transform: none;
  }

  .proc-card-head {
    display: grid;
    gap: 8px;
    padding: 13px 14px 0;
  }

  .proc-card-title {
    min-height: 0 !important;
    margin: 0;
    color: #17120c;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: left;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .proc-meta {
    justify-content: start;
    gap: 6px;
  }

  .proc-time,
  .proc-tag {
    min-height: 24px;
    padding: 5px 8px;
    font-size: 9.5px;
    line-height: 1.1;
  }

  .proc-desc {
    display: block;
    min-height: 0;
    margin: 0;
    padding: 12px 14px 16px;
    color: rgba(21, 18, 14, .72);
    font-size: 12.2px;
    line-height: 1.72;
    text-align: left;
  }

  .line-final-visual::after {
    width: min(76%, 540px);
    min-height: 52px;
    bottom: 22%;
    font-size: 13px;
    letter-spacing: 0;
  }

  .line-final-wrap {
    padding: 24px 20px 22px;
  }

  .line-final-wrap .final-tag {
    min-height: 42px;
    padding-inline: 20px;
    font-size: 11px;
    letter-spacing: .2em;
  }

  .line-final-wrap .final-title {
    max-width: 8.8em;
    margin: 22px auto 0;
    font-size: clamp(34px, 9.1vw, 38px);
    line-height: 1.28;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .line-final-wrap .final-lead {
    max-width: 23em;
    margin-top: 18px;
    font-size: 13.5px;
    line-height: 1.85;
  }

  .line-final-benefits {
    margin-top: 22px;
  }

  .line-final-benefits div {
    padding: 16px 17px;
  }

  .line-final-benefits b {
    font-size: 15.5px;
    line-height: 1.45;
  }

  .line-final-benefits small {
    font-size: 11.5px;
  }

  .line-final-btn {
    min-height: 58px;
    font-size: 15.5px;
  }
}

@media (max-width: 640px) {
  body.reading-focus .fixed-bar,
  body.reading-focus .fixed-bar.is-on {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
  }
}

/* 2026-06-14: responsive polish based on latest mobile screenshots. */
.voice:nth-child(1) .voice-portrait .photo-ph,
.voice:nth-child(1) .photo-ph {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.18)),
    url("/assets/images/voice-case-01-real.jpg") !important;
  background-size: cover !important;
  background-position: center 22% !important;
}

.prob-lead span {
  display: block;
}

.overview .hand.red,
.reasons .hand.red,
.red-em {
  color: #e32632 !important;
}

.comp-mobile-headline,
.comp-mobile-table,
.comp-mobile-values {
  min-width: 0;
}

@media (min-width: 641px) {
  .comp-mobile {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .hero-static-kicker {
    max-width: 22em;
    font-size: clamp(14px, 4.1vw, 17px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: .02em;
    text-shadow: 0 2px 14px rgba(0,0,0,.72);
  }

  .cinema-title {
    max-width: 7.8em;
    font-size: clamp(48px, 13.7vw, 60px);
    line-height: 1.08;
    letter-spacing: 0;
    text-shadow: 0 4px 24px rgba(0,0,0,.72);
  }

  .cinema-title .line {
    display: block;
  }

  .cinema-title .line-1 {
    font-size: .62em;
    line-height: 1.24;
    margin-bottom: .12em;
  }

  .cinema-sub {
    max-width: 11.2em;
    font-size: clamp(25px, 6.9vw, 30px);
    font-weight: 900;
    line-height: 1.32;
    letter-spacing: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,.76);
  }

  .cinema-sub b {
    color: var(--c-highlight);
  }

  .problems .sec-head {
    margin-bottom: 24px;
  }

  .problems .sec-title {
    line-height: 1.18;
  }

  .problems .marker {
    padding-inline: .12em;
  }

  .prob-lead {
    max-width: 21em;
    margin-inline: auto;
    font-size: 14.5px;
    line-height: 1.9;
    text-align: center;
    text-wrap: balance;
  }

  .prob-list {
    gap: 12px;
  }

  .prob {
    min-height: 82px;
    grid-template-columns: 44px 1fr;
    align-items: center;
    padding: 15px 17px;
  }

  .prob-check {
    align-self: center;
  }

  .prob-num {
    display: none;
  }

  .prob-text {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.62;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .overview .sec-lead {
    max-width: 24em;
    line-height: 1.95;
    text-align: center;
    text-wrap: balance;
  }

  .ovw-svc-title {
    line-height: 1.18;
  }

  .ovw-svc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding-inline: 0;
  }

  .ovw-svc {
    width: auto;
    height: 256px;
    min-height: 256px;
    padding: 18px 12px 18px;
    scroll-snap-align: none;
  }

  .ovw-svc::before {
    background-size: cover !important;
  }

  .ovw-svc:nth-child(1)::before { background-position: 58% 50% !important; }
  .ovw-svc:nth-child(2)::before { background-position: 48% 50% !important; }
  .ovw-svc:nth-child(3)::before { background-position: 50% 46% !important; }
  .ovw-svc:nth-child(4)::before { background-position: 56% 52% !important; }

  .ovw-svc-title-c {
    font-size: 15.5px;
    line-height: 1.36;
    min-height: 42px;
  }

  .ovw-svc-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }

  .ovw-svc::after {
    inset: auto 8px 8px;
  }

  .ovw-svc:hover::after,
  .ovw-svc:focus::after,
  .ovw-svc:focus-visible::after {
    height: 204px;
  }

  .ovw-svc-desc {
    font-size: 11px;
    line-height: 1.5;
  }

  .ovw-svc:hover .ovw-svc-desc,
  .ovw-svc:focus .ovw-svc-desc,
  .ovw-svc:focus-visible .ovw-svc-desc {
    max-height: 70px;
  }

  .ovw-svc-points {
    gap: 5px;
  }

  .ovw-svc-points li {
    min-height: 22px;
    padding: 4px 7px;
    font-size: 9.5px;
    line-height: 1.2;
  }

  .rsn {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    overflow: hidden;
  }

  .rsn *,
  .rsn-body,
  .rsn-visual {
    min-width: 0;
  }

  .rsn-body {
    display: grid;
    align-content: center;
    text-align: center;
  }

  .rsn-sub {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.52;
  }

  .rsn-lead {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    margin-block: 8px 10px;
    font-size: clamp(22px, 5.8vw, 26px);
    line-height: 1.28;
  }

  .rsn-lead .marker {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .rsn-text {
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .rsn-bullets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
    margin-top: 18px;
  }

  .rsn-bullets li {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 5px;
    text-align: center;
    font-size: 11px;
    line-height: 1.34;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .rsn-bullets li svg {
    flex: 0 0 auto;
  }

  .comp .sec-lead {
    max-width: 21em;
    line-height: 1.85;
    text-wrap: balance;
  }

  .comp-podium {
    display: none !important;
  }

  .comp-mobile {
    display: grid !important;
    gap: 13px;
    width: 100%;
    margin-top: 24px;
  }

  .comp-mobile-headline {
    display: grid;
    place-items: center;
    gap: 7px;
    padding: 16px 14px;
    border: 1px solid rgba(205,164,77,.42);
    border-radius: 8px;
    background:
      radial-gradient(circle at 50% 0%, rgba(240,202,111,.18), transparent 55%),
      linear-gradient(180deg, rgba(22,18,12,.95), rgba(10,9,7,.96));
    color: #fffaf0;
    box-shadow: 0 16px 44px rgba(0,0,0,.2);
  }

  .comp-mobile-headline span {
    color: var(--c-highlight);
    font-family: var(--f-num);
    font-size: 12px;
    letter-spacing: .18em;
  }

  .comp-mobile-headline b {
    font-size: 20px;
    line-height: 1.28;
  }

  .comp-mobile-table {
    display: grid;
    gap: 12px;
  }

  .comp-mobile-row {
    display: grid;
    gap: 11px;
    padding: 14px;
    border: 1px solid rgba(205,164,77,.28);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,249,239,.95)),
      #fff;
    box-shadow: 0 18px 48px rgba(0,0,0,.12);
  }

  .comp-mobile-row-head {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 28px;
  }

  .comp-mobile-row-head span {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #17120c;
    background: linear-gradient(135deg, #f6df9b, #b98b35);
    font-family: var(--f-num);
    font-size: 13px;
  }

  .comp-mobile-row-head b {
    color: #17120c;
    font-size: 17px;
    line-height: 1.3;
  }

  .comp-mobile-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .comp-mobile-values div {
    display: grid;
    align-content: center;
    min-height: 112px;
    padding: 10px 7px;
    border: 1px solid rgba(23,18,12,.1);
    border-radius: 7px;
    background: rgba(250,245,236,.9);
    text-align: center;
  }

  .comp-mobile-values .is-best {
    border-color: rgba(205,164,77,.55);
    background:
      radial-gradient(circle at 50% 0%, rgba(240,202,111,.24), transparent 62%),
      linear-gradient(180deg, #1b1711, #090807);
    color: #fff9ec;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  }

  .comp-mobile-values small {
    color: rgba(23,18,12,.58);
    font-size: 10px;
    line-height: 1.28;
  }

  .comp-mobile-values .is-best small {
    color: var(--c-highlight);
  }

  .comp-mobile-values strong {
    display: block;
    margin-top: 5px;
    color: #17120c;
    font-size: 13px;
    line-height: 1.34;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .comp-mobile-values .is-best strong {
    color: #fffaf0;
    font-size: 13.5px;
  }

  .comp-mobile-values em {
    display: block;
    margin-top: 6px;
    color: rgba(23,18,12,.54);
    font-size: 9.8px;
    font-style: normal;
    line-height: 1.35;
  }

  .comp-mobile-values .is-best em {
    color: rgba(255,249,236,.74);
  }

  .comp-footnote {
    max-width: 25em;
    margin-top: 16px;
    margin-inline: auto;
    font-size: 11.5px;
    line-height: 1.85;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .proc-card {
    grid-template-rows: 76px auto auto;
  }

  .proc-card-head {
    align-content: center;
    min-height: 84px;
    padding: 12px 14px 8px !important;
  }

  .proc-card-title {
    text-align: center;
  }

  .proc-meta {
    justify-content: center;
  }

  .proc-desc {
    min-height: 86px;
    display: flex !important;
    align-items: center;
    padding: 10px 15px 16px !important;
    line-height: 1.72;
  }

  .voices-banner {
    align-items: center;
  }

  .voice-portrait {
    background: #17120c;
  }

  .voice-stat {
    min-height: 92px;
    display: grid;
    place-items: center;
    padding: 16px 14px;
    text-align: center;
    background:
      radial-gradient(circle at 50% 8%, rgba(255,234,158,.34), transparent 42%),
      linear-gradient(135deg, #d61e2a 0%, #8b0710 68%, #420407 100%) !important;
    box-shadow:
      inset 0 0 0 1px rgba(255,242,190,.22),
      0 16px 30px rgba(130,0,12,.24);
  }

  .voice-stat::before {
    display: none;
  }

  .voice-stat > div {
    display: grid;
    justify-items: center;
    gap: 5px;
  }

  .vs-num {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    width: 100%;
    text-align: center;
  }

  .vs-num b {
    color: #fff4c7;
    font-size: clamp(42px, 12vw, 56px);
    line-height: .9;
    text-shadow: 0 4px 18px rgba(0,0,0,.36);
  }

  .vs-num i {
    color: #fff7df;
    font-size: 13px;
    font-weight: 800;
  }

  .vs-lbl {
    color: rgba(255,248,226,.86);
    font-size: 11.5px;
  }

  .voice-lic {
    color: #16110a;
    background: rgba(255,246,218,.92);
    box-shadow: 0 8px 18px rgba(0,0,0,.24);
  }
}

@media (max-width: 374px) {
  .cinema-title {
    font-size: clamp(43px, 13.2vw, 52px);
  }

  .comp-mobile-values {
    gap: 5px;
  }

  .comp-mobile-values div {
    padding-inline: 5px;
  }

  .comp-mobile-values strong {
    font-size: 12px;
  }

  .comp-mobile-values em {
    font-size: 9px;
  }
}

/* 2026-06-14: mobile-first hero image and Japanese line-break refinement. */
@media (max-width: 640px) {
  .hero-stage.cinema-hero.still-hero,
  .cinema-hero.still-hero,
  .still-hero {
    min-height: min(760px, 100svh) !important;
    background-color: #050504;
  }

  .hero-still-bg {
    background:
      radial-gradient(circle at 72% 42%, rgba(222, 177, 84, .18), transparent 28%),
      linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.76) 44%, rgba(0,0,0,.42) 78%, rgba(0,0,0,.56) 100%),
      linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.36) 48%, rgba(0,0,0,.92) 100%),
      url("/assets/images/skima-fp-hero-mobile-v3.png") center center / cover no-repeat !important;
    filter: saturate(1.02) contrast(1.03);
  }

  .still-hero .cinema-copy {
    top: clamp(116px, 15svh, 142px) !important;
  }

  .hero-static-kicker {
    max-width: 20.5em;
    font-size: clamp(13px, 3.65vw, 15px);
    line-height: 1.55;
    white-space: normal;
    text-wrap: balance;
  }

  .cinema-title {
    max-width: 7.7em;
    font-size: clamp(46px, 12.9vw, 56px);
    line-height: 1.1;
    text-wrap: balance;
  }

  .cinema-title .line-1 {
    font-size: .6em;
    line-height: 1.35;
  }

  .cinema-sub {
    max-width: 9.5em;
    font-size: clamp(24px, 6.5vw, 28px);
    line-height: 1.36;
    text-wrap: balance;
  }

  .cinema-sub b {
    display: block;
    width: fit-content;
    margin-top: .08em;
    white-space: nowrap;
  }

  .mobile-phrase,
  .comp-lead-mobile span {
    display: inline-block;
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .problems .sec-title {
    font-size: clamp(31px, 8.25vw, 35px);
    line-height: 1.22;
    word-break: keep-all;
    text-wrap: balance;
  }

  .problem-title-line,
  .problem-title-marker,
  .problem-title-marker span {
    display: block;
  }

  .problem-title-marker span {
    white-space: nowrap;
  }

  .problems .sec-title .marker {
    margin-top: .12em;
    padding-inline: .1em;
  }

  .overview .sec-lead {
    max-width: 25.5em;
    font-size: 14px;
    line-height: 1.9;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .overview .sec-lead .marker {
    white-space: nowrap;
  }

  .comp-lead-mobile {
    max-width: 24em !important;
    text-align: center;
  }

  .comp-lead-mobile span {
    display: block;
    line-height: 1.78;
  }

  .sec-title,
  .rsn-lead,
  .voice-h,
  .proc-card-title,
  .faq-q-text {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 374px) {
  .cinema-title {
    font-size: clamp(42px, 12.4vw, 48px);
  }

  .cinema-sub {
    font-size: clamp(23px, 6.25vw, 25px);
  }

  .problems .sec-title {
    font-size: clamp(29px, 7.9vw, 32px);
  }
}

/* 2026-06-14: mobile polish for problem checks, service photos, and reason visuals */
.rsn-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-size: cover;
  background-position: center;
  filter: saturate(.96) contrast(1.05);
  transform: scale(1.01);
}

.rsn-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(212, 170, 89, .28), transparent 34%),
    linear-gradient(180deg, rgba(6, 6, 5, .12), rgba(6, 6, 5, .54));
}

.rsn-photo-01 { background-image: url("/assets/images/skima-fp-reason-zero-mobile-v1.png"); }
.rsn-photo-02 { background-image: url("/assets/images/skima-fp-reason-support-mobile-v1.png"); }
.rsn-photo-03 { background-image: url("/assets/images/skima-fp-reason-lowcost-mobile-v1.png"); }

.rsn-visual .rsn-ill-svg {
  position: relative;
  z-index: 1;
  opacity: .18;
  mix-blend-mode: screen;
}

.rsn-visual .rsn-tag,
.rsn-visual .rsn-no {
  z-index: 2;
}

.ovw-svc:nth-child(1) { --svc-bg-mobile: url("/assets/images/skima-fp-service-life-mobile-v1.png"); }
.ovw-svc:nth-child(2) { --svc-bg-mobile: url("/assets/images/skima-fp-service-household-mobile-v1.png"); }
.ovw-svc:nth-child(3) { --svc-bg-mobile: url("/assets/images/skima-fp-service-asset-mobile-v1.png"); }
.ovw-svc:nth-child(4) { --svc-bg-mobile: url("/assets/images/skima-fp-service-home-mobile-v1.png"); }

@media (max-width: 640px) {
  .prob {
    min-height: 92px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    padding-block: 14px;
  }

  .prob-check {
    align-self: center;
    justify-self: center;
    margin: 0;
    transform: translateY(17px) !important;
  }

  .prob-text {
    min-height: 70px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 2px;
    padding-top: 0;
    line-height: 1.52;
    text-align: center;
  }

  .prob-text > span {
    display: block;
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .ovw-svc {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5;
    padding: 18px 10px 16px;
  }

  .ovw-svc::before {
    background-image:
      linear-gradient(180deg, rgba(10, 9, 7, .12), rgba(10, 9, 7, .34) 45%, rgba(10, 9, 7, .8)),
      var(--svc-bg-mobile, var(--svc-bg)) !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .ovw-svc:nth-child(1)::before,
  .ovw-svc:nth-child(2)::before,
  .ovw-svc:nth-child(3)::before,
  .ovw-svc:nth-child(4)::before {
    background-position: center center !important;
  }

  .ovw-svc-title-c {
    min-height: 38px;
    font-size: clamp(14px, 3.9vw, 15.5px);
  }

  .ovw-svc-icon {
    width: 38px;
    height: 38px;
  }

  .ovw-svc:hover::after,
  .ovw-svc:focus::after,
  .ovw-svc:focus-visible::after {
    height: calc(100% - 14px);
  }

  .ovw-svc-desc {
    font-size: 10.5px;
    line-height: 1.42;
  }

  .ovw-svc:hover .ovw-svc-desc,
  .ovw-svc:focus .ovw-svc-desc,
  .ovw-svc:focus-visible .ovw-svc-desc {
    max-height: 64px;
  }

  .ovw-svc-points {
    gap: 4px;
  }

  .ovw-svc-points li {
    min-height: 20px;
    padding: 3px 6px;
    font-size: 9px;
  }

  .rsn-r .rsn-visual,
  .rsn-visual {
    min-height: 216px !important;
    overflow: hidden;
    isolation: isolate;
  }

  .rsn-photo {
    background-size: cover;
    background-position: center center;
    transform: scale(1);
  }

  .rsn-visual .rsn-ill-svg {
    display: none !important;
  }
}

@media (max-width: 374px) {
  .prob {
    min-height: 88px;
  }

  .prob-text {
    min-height: 60px;
    font-size: 14px;
  }

  .prob-check {
    transform: translateY(12px) !important;
  }

  .ovw-svc-desc {
    font-size: 10px;
  }
}

/* 2026-06-15: deterministic Japanese mobile line breaks */
.jp-line {
  display: inline;
}

.keep {
  white-space: nowrap;
}

.overview-highlight {
  display: inline-grid;
  justify-items: center;
  gap: 4px;
}

.overview-highlight .jp-line {
  padding: 0 8px;
  background: linear-gradient(transparent 58%, rgba(188, 139, 65, .42) 58%);
}

@media (max-width: 640px) {
  .jp-line {
    display: block;
  }

  .voice-h .jp-line,
  .faq-q-text .jp-line,
  .trust-card-val,
  .trust-card-val i,
  .vs-num,
  .vs-num i {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-wrap: auto !important;
  }

  .trust-card-val {
    width: max-content;
    max-width: 100%;
    display: inline-flex !important;
    align-items: baseline;
    justify-content: center;
    flex-wrap: nowrap !important;
    margin-inline: auto;
    gap: .08em;
    letter-spacing: 0;
    line-height: .88;
  }

  .trust-card-val i {
    display: inline-block;
    flex: 0 0 auto;
    font-size: .34em;
    line-height: 1;
  }

  .trust-card-val-range {
    font-size: clamp(52px, 13vw, 66px);
  }

  .comp-lead-mobile,
  .comp-lead-mobile span,
  .comp-lead-mobile b {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-wrap: auto !important;
  }

  .voice-h {
    line-height: 1.34 !important;
  }

  .voice-h .marker {
    display: inline-grid;
    justify-items: start;
    max-width: 100%;
    line-height: 1.34;
  }

  .voice-h .jp-line {
    max-width: 100%;
  }

  .voice-stat {
    overflow: hidden;
  }

  .voice-stat > div {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(72px, 1fr);
    align-items: center;
    column-gap: 12px;
  }

  .vs-num {
    width: auto;
    min-width: 92px;
    grid-column: 1;
    justify-content: start;
  }

  .vs-num b {
    font-size: clamp(42px, 12vw, 54px);
  }

  .vs-num i {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .vs-lbl {
    grid-column: 2;
    justify-self: end;
    max-width: none;
    min-width: 0;
    text-align: left;
    line-height: 1.45;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .vs-lbl .jp-line {
    display: block;
    white-space: nowrap;
  }

  .faq-q-text {
    min-width: 0;
    font-size: clamp(17px, 4.4vw, 19px);
    line-height: 1.38;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-wrap: auto !important;
  }

  .faq-q-text .jp-line {
    max-width: 100%;
  }

  .rsn-bullets .jp-line {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .rsn-sub-lines {
    display: inline-grid;
    justify-items: center;
    gap: 3px;
    line-height: 1.5;
  }

  .rsn-sub-lines .jp-line,
  .rsn-lead .jp-line {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .rsn-lead .marker {
    display: inline-grid;
    justify-items: center;
    gap: 2px;
  }

  .proc-desc {
    display: block !important;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .proc-desc .keep {
    white-space: nowrap;
  }
}

@media (max-width: 374px) {
  .trust-card-val {
    font-size: clamp(48px, 13vw, 60px);
  }

  .trust-card-val-range {
    font-size: clamp(48px, 12.2vw, 58px);
  }

  .voice-h {
    font-size: clamp(19px, 5.4vw, 22px);
  }

  .voice-stat > div {
    column-gap: 8px;
    grid-template-columns: auto minmax(66px, 1fr);
  }

  .vs-num {
    min-width: 90px;
  }

  .vs-lbl {
    font-size: 11px;
  }

  .faq-q-text {
    font-size: 16px;
  }
}

/* 2026-06-15: premium polish for problem alignment and service reveal */
@media (max-width: 640px) {
  .prob {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    column-gap: 14px;
    padding-inline: 22px 18px;
  }

  .prob-check {
    transform: none !important;
  }

  .prob-text {
    width: 100%;
    min-height: auto;
    align-content: center;
    justify-items: start;
    text-align: left;
    letter-spacing: 0;
  }

  .prob-text > span {
    width: 100%;
  }

  .ovw-svc-grid {
    align-items: start;
  }

  .ovw-svc {
    position: relative;
    overflow: visible;
    isolation: isolate;
    contain: layout;
    transition:
      min-height .42s cubic-bezier(.2,.8,.2,1),
      transform .42s cubic-bezier(.2,.8,.2,1),
      box-shadow .42s ease,
      border-color .42s ease,
      filter .42s ease;
  }

  .ovw-svc::before {
    transform: scale(1.02);
    transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
  }

  .ovw-svc::after {
    inset: auto 8px 8px;
    border: 1px solid rgba(239, 199, 111, .5);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 238, 181, .12), transparent 22%),
      linear-gradient(180deg, rgba(17, 13, 8, .95), rgba(8, 7, 6, .9));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.12),
      0 18px 42px rgba(0,0,0,.34);
  }

  .ovw-svc:hover,
  .ovw-svc:focus,
  .ovw-svc:focus-visible {
    z-index: 10;
    height: 356px !important;
    min-height: 356px !important;
    aspect-ratio: auto !important;
    transform: translateY(-8px) scale(1.025);
    border-color: rgba(239, 199, 111, .68);
    box-shadow:
      0 30px 70px rgba(0,0,0,.42),
      0 0 0 1px rgba(239,199,111,.18);
  }

  .ovw-svc:hover::before,
  .ovw-svc:focus::before,
  .ovw-svc:focus-visible::before {
    transform: scale(1.09);
    filter: saturate(1.08) contrast(1.06) brightness(.9);
  }

  .ovw-svc:hover::after,
  .ovw-svc:focus::after,
  .ovw-svc:focus-visible::after {
    height: calc(100% - 16px);
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .ovw-svc-icon {
    transition: transform .42s ease, background .42s ease, box-shadow .42s ease;
  }

  .ovw-svc:hover .ovw-svc-icon,
  .ovw-svc:focus .ovw-svc-icon,
  .ovw-svc:focus-visible .ovw-svc-icon {
    transform: translateY(-4px) scale(.9);
    background: rgba(20,16,11,.54);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.1),
      0 0 28px rgba(239,199,111,.26);
  }

  .ovw-svc-title-c {
    transition: transform .42s ease, color .42s ease, text-shadow .42s ease;
  }

  .ovw-svc:hover .ovw-svc-title-c,
  .ovw-svc:focus .ovw-svc-title-c,
  .ovw-svc:focus-visible .ovw-svc-title-c {
    transform: translateY(-6px);
    color: #fff7dc;
    text-shadow: 0 8px 24px rgba(0,0,0,.42);
  }

  .ovw-svc-desc {
    color: rgba(255,249,234,.94);
    font-size: 10.8px;
    line-height: 1.5;
  }

  .ovw-svc:hover .ovw-svc-desc,
  .ovw-svc:focus .ovw-svc-desc,
  .ovw-svc:focus-visible .ovw-svc-desc {
    max-height: none;
    margin-top: 7px;
    opacity: 1;
    transform: translateY(0);
  }

  .ovw-svc-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .ovw-svc:hover .ovw-svc-points,
  .ovw-svc:focus .ovw-svc-points,
  .ovw-svc:focus-visible .ovw-svc-points {
    max-height: none;
    margin-top: 8px;
    opacity: 1;
    transform: translateY(0);
  }

  .ovw-svc-points li {
    width: 100%;
    min-height: 20px;
    justify-content: center;
    border: 1px solid rgba(239,199,111,.24);
    background: rgba(255,245,218,.1);
    color: rgba(255,249,234,.9);
  }
}

@media (max-width: 374px) {
  .prob {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    column-gap: 12px;
    padding-inline: 18px 14px;
  }

  .ovw-svc:hover,
  .ovw-svc:focus,
  .ovw-svc:focus-visible {
    height: 368px !important;
    min-height: 368px !important;
  }

  .ovw-svc-desc {
    font-size: 10.4px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .prob-check {
    animation: problemCheckPulse 3.8s ease-in-out infinite;
  }

  .prob:nth-child(2) .prob-check { animation-delay: .28s; }
  .prob:nth-child(3) .prob-check { animation-delay: .56s; }
  .prob:nth-child(4) .prob-check { animation-delay: .84s; }
  .prob:nth-child(5) .prob-check { animation-delay: 1.12s; }

  .ovw-svc::before {
    animation: serviceImageBreath 9s ease-in-out infinite;
  }

  .ovw-svc:nth-child(2)::before { animation-delay: -2s; }
  .ovw-svc:nth-child(3)::before { animation-delay: -4s; }
  .ovw-svc:nth-child(4)::before { animation-delay: -6s; }

  .ovw-svc::after {
    transition-timing-function: cubic-bezier(.2,.8,.2,1);
  }

  .sec-head .eyebrow::after {
    content: "";
    display: inline-block;
    width: 34px;
    height: 1px;
    margin-left: 12px;
    vertical-align: middle;
    background: linear-gradient(90deg, rgba(212,170,89,0), rgba(212,170,89,.9), rgba(212,170,89,0));
    animation: eyebrowGleam 2.8s ease-in-out infinite;
  }
}

@keyframes problemCheckPulse {
  0%, 100% {
    box-shadow: 0 10px 28px rgba(185,21,22,.22), inset 0 1px 0 rgba(255,255,255,.34);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 14px 38px rgba(185,21,22,.36), 0 0 0 7px rgba(185,21,22,.08), inset 0 1px 0 rgba(255,255,255,.42);
    filter: brightness(1.08);
  }
}

@keyframes serviceImageBreath {
  0%, 100% { transform: scale(1.02); }
  50% { transform: scale(1.07); }
}

@keyframes eyebrowGleam {
  0%, 100% { opacity: .28; transform: scaleX(.7); }
  50% { opacity: .95; transform: scaleX(1.18); }
}

/* 2026-06-16: rebuild mobile problem cards so content sits at the same height */
@media (max-width: 640px) {
  .prob-list {
    gap: 14px;
  }

  .prob {
    height: 104px !important;
    min-height: 104px !important;
    grid-template-columns: 50px minmax(0, 1fr) !important;
    grid-template-rows: 1fr !important;
    column-gap: 14px !important;
    align-items: center !important;
    justify-items: stretch !important;
    padding: 0 22px !important;
    text-align: left !important;
  }

  .prob-check {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 38px !important;
    height: 38px !important;
    align-self: center !important;
    justify-self: center !important;
    transform: none !important;
  }

  .prob-text {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    padding: 0 !important;
    text-align: center !important;
    line-height: 1.55 !important;
    font-size: clamp(13.9px, 3.72vw, 15.15px) !important;
    letter-spacing: 0 !important;
    text-wrap: initial !important;
  }

  .prob-text > span {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
}

@media (max-width: 374px) {
  .prob {
    height: 102px !important;
    min-height: 102px !important;
    grid-template-columns: 46px minmax(0, 1fr) !important;
    column-gap: 13px !important;
    padding: 0 18px !important;
  }

  .prob-check {
    width: 36px !important;
    height: 36px !important;
  }

  .prob-text {
    font-size: 13.7px !important;
  }
}

/* 2026-06-18: keep the problem heading marker behind the lower stroke only */
.problem-title-marker {
  position: relative;
  display: inline-block;
  background: none !important;
  padding-inline: .16em !important;
  isolation: isolate;
}

.problem-title-marker::before {
  content: "";
  position: absolute;
  left: -.12em;
  right: -.12em;
  bottom: .03em;
  height: .36em;
  z-index: -1;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(221, 91, 91, .04), rgba(221, 91, 91, .26) 16%, rgba(221, 91, 91, .3) 84%, rgba(221, 91, 91, .04));
}

.problem-title-marker span {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .problem-title-marker {
    margin-top: .03em !important;
    padding-inline: .14em !important;
  }

  .problem-title-marker::before {
    left: -.1em;
    right: -.1em;
    bottom: .01em;
    height: .32em;
  }
}

/* 2026-06-19: fix mobile voice-card underlines per line */
@media (max-width: 640px) {
  .voice-h .marker {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    width: 100%;
    background: none !important;
    padding-inline: 0 !important;
    box-decoration-break: initial;
    -webkit-box-decoration-break: initial;
  }

  .voice-h .marker::after {
    content: none !important;
  }

  .voice-h .jp-line {
    position: relative;
    display: inline-block !important;
    width: max-content;
    max-width: 100%;
    padding-inline: .08em;
    background: linear-gradient(transparent 60%, rgba(215, 173, 74, .46) 60%) !important;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
}

@media (max-width: 374px) {
  .voice-h {
    font-size: 15.1px !important;
  }
}

/* 2026-06-20: replace remaining customer voice portraits with provided photos */
.voice:nth-child(2) .voice-portrait .photo-ph,
.voice:nth-child(2) .photo-ph {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.18)),
    url("/assets/images/voice-case-02-real.jpg") !important;
  background-size: cover !important;
  background-position: 50% 18% !important;
}

.voice:nth-child(3) .voice-portrait .photo-ph,
.voice:nth-child(3) .photo-ph {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.18)),
    url("/assets/images/voice-case-03-real.jpg") !important;
  background-size: cover !important;
  background-position: 64% 18% !important;
}

@media (max-width: 640px) {
  .voice:nth-child(2) .voice-portrait .photo-ph,
  .voice:nth-child(2) .photo-ph {
    background-position: 50% 16% !important;
  }

  .voice:nth-child(3) .voice-portrait .photo-ph,
  .voice:nth-child(3) .photo-ph {
    background-position: 66% 16% !important;
  }
}

/* 2026-06-27: hero copy, service imagery, and mobile copy polish */
.hero-static-kicker {
  justify-content: flex-start !important;
  width: fit-content !important;
  max-width: min(100%, 34em) !important;
  margin-inline: 0 auto !important;
  text-align: left !important;
}

.hero-static-kicker::before {
  content: none !important;
  display: none !important;
}

.hero-static-kicker::after {
  flex: 0 0 34px;
}

.hero-kamo {
  display: inline-block;
  margin-left: .08em;
  font-size: .5em;
  line-height: 1;
  vertical-align: baseline;
}

.cinema-sub {
  max-width: none !important;
  width: max-content !important;
  min-width: max-content !important;
  white-space: nowrap !important;
}

.cinema-sub b {
  display: inline !important;
}

.hero-still-points {
  display: none !important;
}

.marquee .track {
  animation-duration: 64s !important;
}

.problem-title-marker {
  background: none !important;
  box-shadow: none !important;
}

.problem-title-marker::before,
.problem-title-marker::after {
  content: none !important;
  display: none !important;
}

.problem-title-marker > span {
  display: inline-block !important;
  width: fit-content;
  margin-inline: auto;
  padding-inline: .08em;
  background: linear-gradient(transparent 64%, rgba(180, 22, 28, .24) 64%, rgba(180, 22, 28, .24) 88%, transparent 88%) !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.ovw-svc:nth-child(1) { --svc-bg: url("/assets/images/skima-fp-service-life-mobile-v2.png") !important; --svc-bg-mobile: url("/assets/images/skima-fp-service-life-mobile-v2.png") !important; }
.ovw-svc:nth-child(2) { --svc-bg: url("/assets/images/skima-fp-service-household-mobile-v2.png") !important; --svc-bg-mobile: url("/assets/images/skima-fp-service-household-mobile-v2.png") !important; }
.ovw-svc:nth-child(3) { --svc-bg: url("/assets/images/skima-fp-service-asset-mobile-v2.png") !important; --svc-bg-mobile: url("/assets/images/skima-fp-service-asset-mobile-v2.png") !important; }
.ovw-svc:nth-child(4) { --svc-bg: url("/assets/images/skima-fp-service-home-mobile-v2.png") !important; --svc-bg-mobile: url("/assets/images/skima-fp-service-home-mobile-v2.png") !important; }

.ovw-svc::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.24) 48%, rgba(0,0,0,.82)),
    var(--svc-bg) !important;
  background-size: cover !important;
}

.ovw-svc-icon,
.ovw-svc-title-c {
  display: none !important;
}

.ovw-svc {
  align-content: end;
}

.rsn-sub {
  display: none !important;
}

.rsn-text {
  margin-top: 10px;
}

@media (max-width: 640px) {
  .hero-static-kicker {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .cinema-sub {
    max-width: calc(100vw - 36px) !important;
    width: max-content !important;
    min-width: 0 !important;
    font-size: clamp(18px, 5.05vw, 22px) !important;
    line-height: 1.35 !important;
    overflow: visible !important;
  }

  .problem-title-marker {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    gap: .08em;
  }

  .ovw-svc::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.18) 46%, rgba(0,0,0,.78)),
      var(--svc-bg-mobile, var(--svc-bg)) !important;
    background-size: cover !important;
  }
}

/* 2026-06-30: final copy, real service scenes, faster ticker, and CTA alignment. */
.hero-static-kicker::after {
  content: none !important;
  display: none !important;
  flex-basis: 0 !important;
}

.marquee .track {
  animation-duration: 24s !important;
}

.ovw-svc:nth-child(1) {
  --svc-bg: url("/assets/images/skima-fp-service-life-real-v3.png") !important;
  --svc-bg-mobile: url("/assets/images/skima-fp-service-life-real-v3.png") !important;
}

.ovw-svc:nth-child(2) {
  --svc-bg: url("/assets/images/skima-fp-service-household-real-v3.png") !important;
  --svc-bg-mobile: url("/assets/images/skima-fp-service-household-real-v3.png") !important;
}

.ovw-svc:nth-child(3) {
  --svc-bg: url("/assets/images/skima-fp-service-asset-real-v3.png") !important;
  --svc-bg-mobile: url("/assets/images/skima-fp-service-asset-real-v3.png") !important;
}

.ovw-svc:nth-child(4) {
  --svc-bg: url("/assets/images/skima-fp-service-home-real-v3.png") !important;
  --svc-bg-mobile: url("/assets/images/skima-fp-service-home-real-v3.png") !important;
}

.ovw-svc::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.18) 42%, rgba(0,0,0,.86)),
    var(--svc-bg) !important;
  background-size: cover !important;
  background-position: center !important;
}

.ovw-svc-title-c {
  position: relative !important;
  z-index: 3 !important;
  display: inline-grid !important;
  justify-items: center !important;
  gap: 3px !important;
  width: min(100%, 250px) !important;
  max-width: calc(100% - 6px) !important;
  margin: auto 0 10px !important;
  padding: 10px 16px 9px !important;
  border: 1px solid rgba(240, 202, 111, .45) !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(240,202,111,.18), transparent 72%),
    linear-gradient(180deg, rgba(12,10,8,.88), rgba(6,5,4,.76)) !important;
  color: #f9ecd0 !important;
  font-family: var(--f-serif) !important;
  font-weight: 900 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.62) !important;
  box-shadow:
    0 14px 34px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.09) !important;
}

.svc-label-main,
.svc-label-sub {
  display: block !important;
  white-space: nowrap !important;
}

.svc-label-main {
  font-size: clamp(18px, 1.9vw, 27px) !important;
  color: #fff7e8 !important;
}

.svc-label-sub {
  color: rgba(240,202,111,.9) !important;
  font-family: var(--f-sans) !important;
  font-size: clamp(10px, .88vw, 12px) !important;
  font-weight: 900 !important;
  letter-spacing: .03em !important;
}

.final-camp-hotspot {
  left: 63.3% !important;
  bottom: 16.25% !important;
  width: 56.4% !important;
  height: 21.6% !important;
  transform: translateX(-50%) !important;
}

@media (max-width: 640px) {
  .hero-static-kicker {
    white-space: nowrap !important;
    font-size: clamp(12px, 3.1vw, 14px) !important;
  }

  .ovw-svc-title-c {
    width: min(100%, 160px) !important;
    padding: 8px 8px 7px !important;
    margin-bottom: 8px !important;
  }

  .svc-label-main {
    font-size: clamp(15px, 4.1vw, 17px) !important;
  }

  .svc-label-sub {
    font-size: clamp(9px, 2.55vw, 10px) !important;
  }

  .final-camp-hotspot {
    left: 63.3% !important;
    bottom: 16.25% !important;
    width: 56.4% !important;
    height: 21.6% !important;
  }

  .comp-mobile-values {
    grid-template-columns: .86fr 1.34fr .86fr !important;
    gap: 5px !important;
  }

  .comp-mobile-values div {
    padding-inline: 5px !important;
  }

  .comp-mobile-values strong {
    font-size: 11px !important;
    line-height: 1.28 !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
  }

  .comp-mobile-values .is-best strong {
    font-size: 12px !important;
  }

  .comp-mobile-values div:nth-child(2) strong {
    width: 138% !important;
    margin-left: -19% !important;
    white-space: nowrap !important;
    transform: scaleX(.74) !important;
    transform-origin: center !important;
    font-size: 10.5px !important;
    letter-spacing: 0 !important;
  }
}

/* 2026-06-30: LINE LP CTA alignment. Match the floating CTA to the in-page LINE CTA
   so overlapping states do not look horizontally shifted on mobile Safari. */
.line-lp .fixed-bar,
.line-lp .fixed-bar.is-on {
  width: min(620px, calc(100vw - 74px)) !important;
}

.line-lp .fixed-bar-btn {
  min-height: 65px !important;
  padding-inline: 18px !important;
}

@media (min-width: 641px) {
  .line-lp .fixed-bar,
  .line-lp .fixed-bar.is-on {
    width: min(620px, calc(100vw - 48px)) !important;
  }

  .line-lp .fixed-bar-btn {
    min-height: 76px !important;
  }
}
