/* =========================================================
   MeishiCall LP — design tokens & styles
   Pop × Creative × Refined. Light base, vivid accents.
   ========================================================= */

:root {
  /* brand */
  --navy:      #0b2350;
  --navy-2:    #14315f;
  --blue:      #0b78fa;
  --blue-deep: #1565d8;
  --blue-soft: #e9f3ff;
  --pink:      #fb3e6c;
  --pink-2:    #ff5f8c;
  --pink-soft: #ffe7ee;
  --coral:     #ff7e5f;
  --peach:     #ffb27a;
  --yellow:    #ffd23d;
  --green:     #2bc08a;
  --red-dot:   #fd4565;

  /* neutrals */
  --ink:       #25304a;
  --muted:     #6f7c97;
  --bg:        #ffffff;
  --bg-soft:   #f3f8fd;
  --bg-soft-2: #eef5fc;
  --line:      #e6eef7;
  --brush:     #cbe6fb;

  --shadow-sm: 0 4px 16px rgba(20, 49, 95, .06);
  --shadow:    0 14px 40px rgba(20, 49, 95, .10);
  --shadow-lg: 0 30px 70px rgba(20, 49, 95, .14);

  --r:   18px;
  --r-lg: 28px;
  --maxw: 1140px;

  --font-en: 'Space Grotesk', 'Zen Kaku Gothic New', sans-serif;
  --font-jp: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.4; margin: 0; font-weight: 700; letter-spacing: .02em; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.en { font-family: var(--font-en); letter-spacing: .01em; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--bg-soft); }

/* ---------- wavy section dividers (one switch at screen center) ---------- */
.wave-div {
  position: absolute; left: 0; right: 0;
  height: 56px; pointer-events: none;
  background-repeat: no-repeat; background-size: 100% 100%; background-position: center;
  z-index: 2;
}
.wave-div.is-top { top: 0; transform: translateY(-55px); }
.wave-div.is-bottom { bottom: 0; transform: translateY(55px); }
.center { text-align: center; }
.muted { color: var(--muted); }

/* ---------- section heading w/ brush highlight ---------- */
.eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--blue); border-radius: 2px; }

.s-title {
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--navy);
  position: relative;
  display: inline-block;
}
.s-title .hl {
  position: relative;
  z-index: 0;
}
.s-title .hl::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 4px;
  height: 38%;
  background: var(--brush);
  border-radius: 8px;
  z-index: -1;
  transform: rotate(-.6deg);
}
.title-block { margin-bottom: 56px; }
.title-block .s-title { margin-top: 14px; }

/* pink emphasis underline used inline */
.u-pink {
  color: var(--pink);
  font-weight: 700;
  background-image: linear-gradient(transparent 62%, rgba(251,62,108,.18) 62%);
  padding: 0 .1em;
}

/* yellow highlight marker — bottom band only */
.mark-y {
  position: relative;
  z-index: 0;
  padding: 0 .06em;
}
.mark-y::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 6px;
  height: 34%;
  background: var(--yellow);
  border-radius: 8px;
  z-index: -1;
  transform: rotate(-.6deg);
}

/* ---------- buttons ---------- */
.btn {
  --bh: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: var(--bh);
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  cursor: pointer;
  border: 0;
  transition: transform .25s cubic-bezier(.2,.8,.25,1), box-shadow .25s, background .2s;
  white-space: nowrap;
}
.btn .arr {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover .arr { transform: translateX(3px); }

.btn--pink {
  background: linear-gradient(120deg, var(--pink), var(--pink-2));
  color: #fff;
  box-shadow: 0 14px 30px rgba(251,62,108,.34);
}
.btn--pink .arr { background: rgba(255,255,255,.22); }
.btn--pink:hover { box-shadow: 0 20px 40px rgba(251,62,108,.42); }

.btn--ghost {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost .arr { background: var(--bg-soft); color: var(--navy); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--blue {
  background: linear-gradient(120deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(11,120,250,.30);
}
.btn--sm { --bh: 46px; font-size: 14px; padding: 0 22px; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(20,49,95,.07);
  padding: 12px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; transition: height .3s, filter .3s; }
.header.scrolled .brand img { height: 46px; }
.header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--navy);
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--pink); border-radius: 2px; transition: width .25s;
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--pink); }
.header__cta { display: flex; align-items: center; gap: 18px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 150px 0 80px; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.32;
  color: var(--navy);
  letter-spacing: .01em;
}
.hero h1 .line2 { color: var(--pink); }
.hero__lead { margin: 26px 0 34px; font-size: 18px; color: var(--ink); }
.hero__lead b { color: var(--navy); font-weight: 700; }
.hero__cta { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

.hero__price {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 22px 8px 20px;
  border-left: 3px solid var(--pink);
}
.hero__price-label { font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: .02em; }
.hero__price-label b { color: var(--navy); font-weight: 700; }
.hero__price-amount {
  display: flex; align-items: baseline; gap: 2px;
  font-family: var(--font-en); color: var(--pink); line-height: 1;
}
.hero__price-amount .num { font-size: 40px; font-weight: 700; letter-spacing: -.01em; }
.hero__price-amount .yen { font-size: 20px; font-weight: 700; margin-left: 1px; font-family: var(--font-jp); }
.hero__price-amount .tilde { font-size: 22px; font-weight: 600; color: var(--pink-2); }

.hero__stats {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.stat { display: flex; gap: 13px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s; }
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat__ic {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
}
.stat > span:last-child { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.stat__t { font-weight: 700; color: var(--navy); font-size: 14.5px; line-height: 1.4; letter-spacing: 0; white-space: nowrap; }
.stat__d { font-size: 12.5px; color: var(--muted); line-height: 1.4; margin-top: 3px; }
.stat-sep { display: none; }
.hero__trust { margin-top: 30px; font-size: 13px; color: var(--muted); }

/* hero image + blobs */
.hero__media { position: relative; min-height: 440px; display: flex; align-items: center; justify-content: center; }
.hero-photo {
  width: 100%; max-width: 460px; aspect-ratio: 1 / 1; height: auto;
  position: relative; z-index: 2;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(2px);
  z-index: 0; pointer-events: none;
}
.blob--blue { width: 320px; height: 300px; background: #d3e9fb;
  left: -40px; top: 30px;
  border-radius: 60% 40% 55% 45% / 55% 50% 50% 45%; filter: blur(6px); opacity: .85; }
.blob--yellow { width: 130px; height: 120px; background: var(--yellow);
  right: 6px; bottom: -10px;
  border-radius: 58% 42% 48% 52% / 60% 45% 55% 40%; filter: blur(1px); opacity: .9; }

.float-a { animation: floatA 9s ease-in-out infinite; }
.float-b { animation: floatB 11s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translate(0,0)} 50%{transform:translate(10px,-16px)} }
@keyframes floatB { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(-12px,12px) rotate(8deg)} }

/* =========================================================
   IMAGE SLOTS — organic blob masks
   ========================================================= */
image-slot { display: block; }
image-slot::part(frame) { background: var(--bg-soft-2); }
image-slot::part(empty) { color: var(--blue-deep); }
.worry image-slot::part(frame) {
  background: linear-gradient(150deg, #cfe6fb, #e3f0fc);
  box-shadow: inset 0 0 0 2px rgba(11,120,250,.18);
}

.mask-hero::part(frame), .mask-hero::part(ring) {
  border-radius: 62% 38% 58% 42% / 54% 44% 56% 46%;
}
.mask-operator::part(frame), .mask-operator::part(ring) {
  border-radius: 64% 36% 52% 48% / 58% 56% 44% 42%;
}
.mask-laptop::part(frame), .mask-laptop::part(ring) {
  border-radius: 58% 42% 55% 45% / 52% 54% 46% 48%;
}
.mask-handshake::part(frame), .mask-handshake::part(ring) {
  border-radius: 56% 44% 60% 40% / 62% 40% 60% 38%;
}
.mask-faq::part(frame), .mask-faq::part(ring) {
  border-radius: 58% 42% 46% 54% / 60% 50% 50% 40%;
}
.mask-cta::part(frame), .mask-cta::part(ring) {
  border-radius: 60% 40% 52% 48% / 56% 52% 48% 44%;
}
.mask-soft::part(frame), .mask-soft::part(ring) {
  border-radius: 48% 52% 44% 56% / 55% 48% 52% 45%;
}

/* =========================================================
   WORRIES
   ========================================================= */
.worries__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 44px 56px;
  margin-bottom: 56px;
}
.worry { text-align: center; width: 270px; }
.worry image-slot { width: 240px !important; height: 178px !important; margin: 0 auto 22px; }
.worry image-slot::part(frame), .worry image-slot::part(ring) { border-radius: 72% 28% 64% 36% / 70% 36% 64% 30% !important; }
.worry:nth-of-type(2) image-slot::part(frame), .worry:nth-of-type(2) image-slot::part(ring) { border-radius: 32% 68% 38% 62% / 62% 30% 70% 38% !important; }
.worry:nth-of-type(3) image-slot::part(frame), .worry:nth-of-type(3) image-slot::part(ring) { border-radius: 66% 34% 30% 70% / 34% 66% 34% 66% !important; }
.worry:nth-of-type(4) image-slot::part(frame), .worry:nth-of-type(4) image-slot::part(ring) { border-radius: 38% 62% 70% 30% / 66% 32% 68% 34% !important; }
.worry:nth-of-type(5) image-slot::part(frame), .worry:nth-of-type(5) image-slot::part(ring) { border-radius: 70% 30% 36% 64% / 32% 68% 30% 70% !important; }
.worry__badge {
  width: 32px; height: 32px; border-radius: 50%; background: var(--blue);
  color: #fff; display: grid; place-items: center; position: absolute;
  right: 24px; bottom: 12px; box-shadow: 0 4px 10px rgba(11,120,250,.35); z-index: 3;
}
.worry__pic { position: relative; width: 240px; margin: 0 auto 22px; }
.worry p { font-size: 16px; color: var(--ink); line-height: 1.7; font-weight: 500; }
.worries__lead {
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--navy); font-weight: 700; line-height: 1.9;
}
.worries__lead .sm { font-size: .82em; color: var(--ink); font-weight: 500; }

/* =========================================================
   SOLUTION FLOW
   ========================================================= */
.flow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  align-items: start; margin-bottom: 100px;
}
.flow__step { text-align: center; position: relative; padding: 0 6px; }
.flow__ic {
  width: 92px; height: 92px; margin: 0 auto 16px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--blue-soft);
  display: grid; place-items: center; color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.flow__ic svg { width: 40px; height: 40px; }
.flow__t { font-weight: 700; color: var(--navy); font-size: 15.5px; margin-bottom: 4px; }
.flow__d { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.flow__step:not(:last-child)::after {
  content: ""; position: absolute; top: 42px; right: -5px;
  width: 10px; height: 10px; border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue); transform: rotate(45deg);
}

.panel {
  display: grid; grid-template-columns: 360px 1fr; gap: 30px; align-items: center;
  background: transparent; border: 0; border-radius: 0;
  padding: 0; box-shadow: none;
}
.panel__media image-slot { width: 100%; aspect-ratio: 9 / 8; height: auto; }
.panel__hd {
  font-size: 19px; color: var(--navy); font-weight: 700;
  display: inline;
  background-image: linear-gradient(transparent 58%, var(--brush) 58%);
  background-repeat: no-repeat;
  padding: 2px 0;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.panel__sub { margin: 16px 0 26px; font-size: 14.5px; color: var(--muted); }
.do-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.do-col h4 { font-size: 17px; margin-bottom: 14px; }
.do-col h4.is-do { color: var(--green); }
.do-col h4.is-dont { color: var(--pink); }
.do-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.do-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.do-list li .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 2px; }
.ck--do { background: rgba(43,192,138,.15); color: var(--green); }
.ck--dont { background: rgba(251,62,108,.13); color: var(--pink); }

/* =========================================================
   OUTPUT / RESULT
   ========================================================= */
.result__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.result__list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 26px; }
.result__list li { display: flex; gap: 18px; align-items: flex-start; }
.result__ic {
  width: 50px; height: 50px; flex: none; border-radius: 14px;
  background: var(--blue-soft); color: var(--blue); display: grid; place-items: center;
}
.result__ic svg { width: 26px; height: 26px; }
.result__t { font-weight: 700; color: var(--navy); font-size: 17px; }
.result__d { font-size: 14px; color: var(--muted); }
.result__media { position: relative; }
.result__media image-slot { width: 100%; aspect-ratio: 7 / 5; height: auto; }
.quote-card {
  position: absolute; left: -10px; bottom: -26px;
  background: #fff; border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow); max-width: 300px; border: 1px solid var(--line);
  font-weight: 700; color: var(--navy); font-size: 15px; z-index: 4;
}
.quote-card b { color: var(--blue); }

/* =========================================================
   PROMISE
   ========================================================= */
.promise__row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 44px; }
.promise__item { text-align: center; }
.promise__ic {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 20px;
  background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--blue);
}
.promise__ic svg { width: 36px; height: 36px; }
.promise__pic {
  width: 100%; max-width: 300px; aspect-ratio: 4 / 3; height: auto;
  margin: 0 auto 22px;
}
.promise__pic::part(frame), .promise__pic::part(ring) {
  border-radius: 70% 30% 38% 62% / 64% 34% 66% 36% !important;
}
.promise__pic::part(frame) {
  background: linear-gradient(150deg, #cfe6fb, #e3f0fc);
  box-shadow: inset 0 0 0 2px rgba(11,120,250,.18);
}
.promise__item p { color: var(--blue-deep); font-weight: 700; font-size: 15.5px; }
.promise-band {
  display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: center;
  background: linear-gradient(100deg, #fff6dd, #fff9ea);
  border-radius: var(--r-lg); padding: 36px 40px;
  border: 1px solid #f5e7bf;
}
.promise-band h3 { font-size: clamp(19px,2.2vw,24px); color: var(--navy); line-height: 1.7; }
.promise-band p { margin-top: 10px; color: var(--ink); font-size: 15px; }
.promise-band image-slot { width: 100%; aspect-ratio: 5 / 3; height: auto; }

/* =========================================================
   PRICING
   ========================================================= */
.price-badge {
  display: inline-flex; align-items: center; gap: 14px;
  margin: -28px 0 44px; width: max-content; max-width: 92%;
  padding: 14px 44px; border-radius: 999px;
  background: linear-gradient(120deg, var(--pink), var(--pink-2));
  box-shadow: 0 16px 36px rgba(251,62,108,.32);
  position: relative;
}
.price-badge-wrap { text-align: center; }
.price-badge::before, .price-badge::after {
  content: ""; position: absolute; top: 50%; width: 11px; height: 11px;
  background: var(--yellow); border-radius: 50%; transform: translateY(-50%);
}
.price-badge::before { left: 20px; }
.price-badge::after { right: 20px; }
.price-badge__zero {
  font-family: var(--font-jp); font-weight: 900; color: #fff;
  font-size: clamp(20px, 2.6vw, 28px); letter-spacing: .03em; line-height: 1;
  white-space: nowrap; display: inline-flex; align-items: baseline;
}
.price-badge__zero .num {
  font-family: var(--font-en); font-size: 1.55em; margin: 0 .04em;
  line-height: 1;
}
.price-badge__sub { font-size: 13px; color: rgba(255,255,255,.95); font-weight: 600; letter-spacing: .02em; white-space: nowrap; padding-left: 14px; border-left: 1.5px solid rgba(255,255,255,.4); }

.plans { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; align-items: stretch; }
.plan {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 24px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured {
  border-color: var(--blue); box-shadow: 0 22px 50px rgba(11,120,250,.18);
}
.plan--featured:hover { transform: translateY(-6px); }
.plan__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg,var(--blue),var(--blue-deep)); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  padding: 6px 18px; border-radius: 999px; box-shadow: 0 8px 18px rgba(11,120,250,.3);
  white-space: nowrap;
}
.plan__name {
  font-size: 22px; color: var(--navy); text-align: center; font-weight: 900;
  letter-spacing: .04em;
}
.plan--featured .plan__name { color: var(--blue-deep); }
.plan__scale { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 10px;
  background: var(--bg-soft); border-radius: 999px; padding: 6px 4px; line-height: 1.3; }
.plan__scale b { color: var(--navy); font-weight: 700; }
.plan__price {
  text-align: center; margin: 20px 0 2px; color: var(--navy);
  font-family: var(--font-en); font-weight: 700; line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  flex-wrap: nowrap; white-space: nowrap;
}
.plan__price .num { font-size: 44px; letter-spacing: -.01em; white-space: nowrap; }
.plan__price .range { font-size: 25px; font-weight: 700; color: var(--muted); }
.plan__price .man { font-size: 18px; font-weight: 700; font-family: var(--font-jp); color: var(--ink); }
.plan__price-label { text-align: center; font-size: 11.5px; color: var(--muted); letter-spacing: .1em; margin-bottom: 22px; }
.plan__list { list-style: none; margin: 0 0 20px; padding: 20px 0 0; display: grid; gap: 13px; border-top: 1px solid var(--line); }
.plan__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink); line-height: 1.45; }
.plan__list li.no { color: var(--muted); }
.plan__list li b { font-weight: 700; color: var(--navy); }
.plan__list .dot {
  flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: 1px;
  background: rgba(11,120,250,.12); color: var(--blue);
  display: grid; place-items: center;
}
.plan__list .dot--off { background: var(--bg-soft); color: var(--muted); }
.plan__fee {
  margin-top: auto; display: flex; flex-direction: column; align-items: center;
  gap: 3px; background: transparent; border-radius: 14px; padding: 13px 14px; text-align: center;
}
.plan__fee span { font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: .02em; }
.plan__fee b { font-family: var(--font-en); font-size: 24px; font-weight: 700; color: var(--muted); line-height: 1; }
.plan__fee b small { font-family: var(--font-jp); font-size: 11px; font-weight: 700; margin-left: 2px; }
.plan--featured .plan__fee { background: transparent; }
.plan--featured .plan__fee b { color: var(--muted); }
.plan__note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 28px; }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industry-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 36px;
}
.ind {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px; box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.2,.8,.25,1), box-shadow .25s, border-color .25s;
}
.ind:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brush); }
.ind__ic {
  width: 48px; height: 48px; flex: none; border-radius: 13px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
  transition: background .25s, color .25s;
}
.ind__ic svg { width: 26px; height: 26px; }
.ind:nth-child(4n+2) .ind__ic { background: var(--pink-soft); color: var(--pink); }
.ind:nth-child(4n+3) .ind__ic { background: #fff4d6; color: #e0a200; }
.ind:nth-child(4n) .ind__ic { background: #dbf3ea; color: var(--green); }
.ind:hover .ind__ic { transform: scale(1.05); }
.ind__t { font-weight: 700; color: var(--navy); font-size: 14.5px; line-height: 1.4; white-space: nowrap; }
.industry-note { color: var(--muted); font-size: 14px; }

/* =========================================================
   STEPS (process)
   ========================================================= */
.steps { position: relative; }
.steps__line { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; position: relative; }
.steps__line::before {
  content: ""; position: absolute; top: 34px; left: 7%; right: 7%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 6px, transparent 6px 12px);
  opacity: .5;
}
.step { text-align: center; position: relative; }
.step__node {
  width: 68px; height: 68px; margin: 0 auto 14px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue-soft); display: grid; place-items: center;
  color: var(--blue); position: relative; box-shadow: var(--shadow-sm);
}
.step__node svg { width: 30px; height: 30px; }
.step__no {
  position: absolute; right: -2px; bottom: -2px; width: 24px; height: 24px;
  background: var(--pink); color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-en); font-weight: 700; font-size: 12px; border: 2px solid #fff;
}
.step__t { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.5; }
.step__sub { font-size: 11.5px; color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq__grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.faq__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 12px; justify-content: space-between;
  padding: 18px 20px; font-family: var(--font-jp); font-weight: 600;
  font-size: 14.5px; color: var(--navy);
}
.faq__q .plus { flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue); display: grid; place-items: center;
  transition: transform .3s, background .3s; font-size: 18px; line-height: 1; }
.faq__item.open .plus { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 20px 18px; font-size: 13.5px; color: var(--muted); }
.faq__media { position: relative; }
.faq__media image-slot { width: 100%; aspect-ratio: 16 / 15; height: auto; }
.faq__all { text-align: right; margin-top: 18px; }
.faq__all a { color: var(--blue); font-weight: 700; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final {
  padding: 0; position: relative; overflow: hidden;
  background: linear-gradient(108deg, var(--pink) 0%, #ff6f7e 48%, var(--peach) 100%);
}
.final .wrap { position: relative; z-index: 2; }
.final__card {
  position: relative;
  background: transparent;
  padding: 84px 60px;
  display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: center;
  box-shadow: none;
}
.final .yblob {
  position: absolute; width: 280px; height: 260px; background: var(--yellow);
  border-radius: 56% 44% 60% 40% / 62% 40% 60% 38%;
  left: -90px; top: -70px; opacity: .55; z-index: 0; filter: blur(2px);
}
.final__card h2 { color: #fff; font-size: clamp(24px,3vw,34px); line-height: 1.5; position: relative; }
.final__card p { color: rgba(255,255,255,.92); margin: 14px 0 28px; font-size: 16px; position: relative; }
.final__cta { display: flex; gap: 22px; flex-wrap: wrap; position: relative; align-items: center; }
.final__card .btn--white { background: #fff; color: var(--pink); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.final__card .btn--white .arr { background: var(--pink-soft); color: var(--pink); }
.final__price {
  display: flex; flex-direction: column; gap: 2px;
  padding: 6px 0 6px 20px;
  border-left: 3px solid rgba(255,255,255,.55);
}
.final__price-zero {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-jp); font-weight: 900; color: #fff;
  font-size: clamp(20px, 2.6vw, 26px); letter-spacing: .03em; line-height: 1.05; white-space: nowrap;
}
.final__price-zero .num { font-family: var(--font-en); font-size: 1.5em; margin: 0 .04em; line-height: 1; }
.final__price-sub { font-size: 13px; color: rgba(255,255,255,.9); font-weight: 600; letter-spacing: .02em; }
.final__media { position: relative; z-index: 2; }
.final__media image-slot { width: 100%; aspect-ratio: 5 / 4; height: auto; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 54px 0 30px; position: relative; }
.footer__top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer__brand img { height: 40px; filter: brightness(0) invert(1); opacity: .96; }
.footer__brand p { margin-top: 14px; font-size: 13px; max-width: 320px; color: rgba(255,255,255,.6); }
.footer__nav { display: flex; gap: 50px; flex-wrap: wrap; }
.footer__col h5 { color: #fff; font-size: 13px; letter-spacing: .12em; margin: 0 0 14px; font-weight: 700; }
.footer__col a { display: block; font-size: 13.5px; padding: 5px 0; color: rgba(255,255,255,.66); }
.footer__col a:hover { color: #fff; }
.footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,.5); }

/* =========================================================
   IMG WRAP — production image replacement for image-slot
   ========================================================= */
.img-wrap {
  display: block;
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* sizes matching former image-slot selectors */
.panel__media .img-wrap  { width: 100%; aspect-ratio: 9 / 8; height: auto; }
.result__media .img-wrap { width: 100%; aspect-ratio: 7 / 5; height: auto; }
.faq__media .img-wrap    { width: 100%; aspect-ratio: 16 / 15; height: auto; }
.final__media .img-wrap  { width: 100%; aspect-ratio: 5 / 4; height: auto; }
.worry .img-wrap         { width: 240px; height: 178px; margin: 0 auto 22px; }

/* blob masks */
.img-wrap.mask-hero     { border-radius: 62% 38% 58% 42% / 54% 44% 56% 46%; }
.img-wrap.mask-operator { border-radius: 64% 36% 52% 48% / 58% 56% 44% 42%; }
.img-wrap.mask-operator img { object-position: 100% center; }
.img-wrap.mask-laptop   { border-radius: 58% 42% 55% 45% / 52% 54% 46% 48%; }
.img-wrap.mask-faq      { border-radius: 58% 42% 46% 54% / 60% 50% 50% 40%; }
.img-wrap.mask-cta      { border-radius: 60% 40% 52% 48% / 56% 52% 48% 44%; }

/* promise blob */
.img-wrap.promise__pic  { border-radius: 70% 30% 38% 62% / 64% 34% 66% 36%; }

/* worry blobs — unique shape per card */
.worry:nth-of-type(1) .img-wrap { border-radius: 72% 28% 64% 36% / 70% 36% 64% 30%; }
.worry:nth-of-type(2) .img-wrap { border-radius: 32% 68% 38% 62% / 62% 30% 70% 38%; }
.worry:nth-of-type(3) .img-wrap { border-radius: 66% 34% 30% 70% / 34% 66% 34% 66%; }
.worry:nth-of-type(4) .img-wrap { border-radius: 38% 62% 70% 30% / 66% 32% 68% 34%; }
.worry:nth-of-type(5) .img-wrap { border-radius: 70% 30% 36% 64% / 32% 68% 30% 70%; }

/* responsive overrides */
@media (max-width: 760px) {
  .worry .img-wrap { width: 100%; height: auto; aspect-ratio: 4 / 3; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.25,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-a, .float-b { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav { display: none; }
  .hero__grid { display: flex; flex-direction: column; align-items: stretch; }
  .hero__copy { display: contents; }
  .hero h1 { order: 1; }
  .hero__media { order: 2; min-height: 0; margin: 24px 0 4px; }
  .hero__lead { order: 3; }
  .hero__cta { order: 4; }
  .hero__trust { order: 5; }
  .hero-photo { aspect-ratio: 1 / 1; height: auto; max-width: 380px; margin: 0 auto; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .result__grid { grid-template-columns: 1fr; gap: 36px; }
  .panel { grid-template-columns: 1fr; }
  .panel__media image-slot { aspect-ratio: 9 / 8; height: auto; }
  .promise-band, .final__card, .faq__grid { grid-template-columns: 1fr; }
  .faq__media, .promise-band image-slot, .final__media { display: none; }
  .plans {
    display: flex; grid-template-columns: none;
    gap: 18px; max-width: none; margin: 0 -28px; padding: 14px 28px 18px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .plans::-webkit-scrollbar { height: 6px; }
  .plans::-webkit-scrollbar-thumb { background: var(--line); border-radius: 6px; }
  .plan {
    flex: 0 0 290px; width: 290px; scroll-snap-align: center;
  }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .s-title .hl {
    background-image: linear-gradient(transparent 62%, var(--brush) 62%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 4px;
  }
  .s-title .hl::after { display: none; }
  .section { padding: 70px 0; }
  .worries__row { gap: 36px 32px; }
  .worry { width: 46%; }
  .worry image-slot { width: 100% !important; height: auto !important; aspect-ratio: 4 / 3; }
  .worry__pic { width: 100%; }
  .flow { grid-template-columns: 1fr 1fr; gap: 28px 10px; }
  .flow__step::after { display: none; }
  .do-grid { grid-template-columns: 1fr; gap: 22px; }
  .steps__line { grid-template-columns: repeat(2,1fr); gap: 28px 10px; }
  .steps__line::before { display: none; }
  .faq__cols { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .header__cta .btn { display: none; }
  .final__card { padding: 80px 28px 120px; }
  .hero { padding-top: 120px; }
  .hero__stats { grid-template-columns: 1fr; gap: 12px; }
}
