/* ===========================================================
   AI Booth Studio — Main
   =========================================================== */

main {
  display: block;
  width: 100%;
}

/* Section title helpers ------------------------------------ */
.section {
  padding: clamp(64px, 8vw, 112px) 0;
}
.section--soft   { background: var(--c-bg-soft); }
.section--dark   { background: var(--c-ink); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* Common eyebrow / section heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-brand);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--c-brand);
}


/* ===========================================================
   FV / Hero
   =========================================================== */
.fv { width: 100%; }
.fv img { width: 100%; }

.hero-booth {
  position: relative;
  width: 100%;
  min-height: clamp(600px, 82vw, 860px);
  overflow: hidden;
  background-image: url("https://auri2.xsrv.jp/booth/wp-content/themes/your-theme/assets/img/topbg.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #fff;
}
/* Strong cinematic darkening for high-contrast copy */
.hero-booth::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 12, 26, 0.92) 0%, rgba(10, 16, 34, 0.78) 42%, rgba(12, 20, 44, 0.45) 100%),
    radial-gradient(1100px 700px at 12% 18%, rgba(30, 58, 255, 0.45), transparent 62%);
  pointer-events: none;
}
/* Bold accent bar anchoring the hero to the bottom edge */
.hero-booth::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--c-brand) 0%, #5B73FF 60%, var(--c-accent) 100%);
  z-index: 2;
}
.hero-booth > * {
  position: relative;
  z-index: 1;
}

/* faint engineering-grid texture for "現場感" without looking flat */
.hero-booth__grid-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(120deg, #000 0%, transparent 65%);
          mask-image: linear-gradient(120deg, #000 0%, transparent 65%);
  pointer-events: none;
}

.hero-booth__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 40px);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Hero badge ------------------------------------------------ */
.hero-booth__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(18px, 2.2vw, 26px);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  font-family: var(--ff-jp);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}
.hero-booth__badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.3);
}

/* Headline — big, heavy, in-your-face ----------------------- */
.hero-booth__headline {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 900;
  color: #fff;
  font-size: clamp(40px, 8vw, 104px);
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
}
/* Accent line gets a solid marker band for punch */
.hero-booth__accent {
  display: inline-block;
  position: relative;
  margin-top: 0.12em;
  padding: 0.04em 0.28em;
  color: #fff;
  background: linear-gradient(120deg, var(--c-brand) 0%, #3F57FF 100%);
  box-shadow: 0 14px 40px rgba(30, 58, 255, 0.5);
  transform: skewX(-4deg);
}
.hero-booth__accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 6px;
  background: var(--c-accent);
  transform: skewX(-4deg);
}

.hero-booth__lead {
  margin: clamp(22px, 2.8vw, 34px) 0 0;
  font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Strength chips — bold numbers, strong contrast ------------ */
.hero-booth__chips {
  list-style: none;
  margin: clamp(28px, 3.4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
  width: 100%;
  max-width: 920px;
}
.hero-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: clamp(16px, 1.8vw, 22px) 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--r-md);
  border-top: 4px solid var(--c-brand);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  text-align: center;
}
.hero-chip__num {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--c-brand-deep);
}
.hero-chip__num small {
  font-size: 0.5em;
  font-weight: 800;
  margin-left: 1px;
}
.hero-chip__label {
  font-family: var(--ff-jp);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-ink-2);
}

/* Hero CTA -------------------------------------------------- */
.hero-booth__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: clamp(28px, 3.4vw, 42px);
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 68px;
  padding: 0 40px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-family: var(--ff);
  font-weight: 800;
  font-size: clamp(16px, 1.7vw, 19px);
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--c-brand);
  box-shadow: 0 18px 44px rgba(30, 58, 255, 0.45);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.hero-btn::after {
  content: "→";
  font-size: 20px;
  transition: transform var(--t-fast);
}
.hero-btn:hover {
  background: var(--c-brand-deep);
  transform: translateY(-3px);
  box-shadow: 0 26px 56px rgba(30, 58, 255, 0.55);
}
.hero-btn:hover::after { transform: translateX(5px); }
.hero-booth__cta-note {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}
.hero-booth__cta-note::before {
  content: "✓ ";
  color: var(--c-accent);
  font-weight: 900;
}

@media (max-width: 720px) {
  .hero-booth__chips { grid-template-columns: repeat(2, 1fr); }
  .hero-booth__cta { gap: 12px; }
  .hero-btn { width: 100%; }
}


/* ===========================================================
   About / Innovation
   =========================================================== */
.contentbg {
  background-image: url("https://auri2.xsrv.jp/booth/wp-content/themes/your-theme/assets/img/contentbg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.innovation {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 40px);
}

.innovation .s-mark {
  width: 100%;
}
.innovation .s-mark img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
}
.innovation .s-mark .tb { display: none; }

.innovation .content { width: 100%; }

.innovation .title-box {
  margin-bottom: clamp(20px, 2.6vw, 32px);
}
.innovation .title-box p:nth-of-type(1) {
  font-family: var(--ff-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.innovation .title-box p:nth-of-type(1)::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--c-brand);
}
.innovation .title-box p:nth-of-type(2) {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}

.innovation .content-txt p {
  font-size: 16px;
  line-height: 2;
  color: var(--c-ink-2);
}

.innovation .pointer-box {
  display: grid;
  gap: 14px;
  margin: clamp(20px, 2.6vw, 28px) 0;
}
.innovation .pointer-box-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
}
.innovation .pointer-box-item img {
  width: 72px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.innovation .pointer-box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-ink);
  margin: 0;
}

@media (max-width: 900px) {
  .innovation {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .innovation .s-mark .tb { display: block; }
  .innovation .s-mark img:not(.tb) { display: none; }
}


/* ===========================================================
   ai-steps : 課題 → 強み
   =========================================================== */
.ai-steps {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--c-bg-soft);
}
.ai-steps__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.ai-steps__title {
  margin: 0 0 clamp(24px, 3vw, 36px);
  text-align: center;
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  line-height: 1.3;
}
/* thick accent bar above section heading for punch */
.ai-steps__title::before {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--c-brand), var(--c-accent));
}
.ai-steps__title + .ai-steps__grid {
  margin-top: clamp(8px, 1vw, 14px);
}
.ai-steps__divider {
  border: 0;
  height: 1px;
  margin: clamp(48px, 6vw, 80px) auto;
  width: 60px;
  background: var(--c-line-strong);
}

.ai-steps__grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}
.ai-steps__grid--4 { grid-template-columns: repeat(4, 1fr); }
.ai-steps__grid--3 { grid-template-columns: repeat(3, 1fr); }

.ai-card {
  border-radius: var(--r-lg);
  background: #fff;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  align-content: center;
  padding: clamp(24px, 3vw, 32px) clamp(16px, 2vw, 22px);
  text-align: center;
  border: 1px solid var(--c-line);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.ai-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-3);
  border-color: var(--c-brand-line);
}
.ai-card--outline {
  background: #fff;
  border: 1px dashed var(--c-line-strong);
  box-shadow: none;
}
.ai-card--shadow {
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 5px solid var(--c-brand);
  box-shadow: var(--sh-2);
}

.ai-card__icon {
  width: 100%;
  height: 96px;
  display: grid;
  place-items: center;
}
.ai-card__icon--lg { height: 120px; }

.ai-card__icon img {
  width: min(120px, 70%);
  height: auto;
  display: block;
}

.ai-card__label {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  line-height: 1.45;
}
.ai-card--shadow .ai-card__label { font-weight: 900; }

.ai-steps__cta {
  display: grid;
  place-items: center;
  margin-top: clamp(28px, 4vw, 40px);
}

/* Unified primary button --------------------------------- */
.ai-btn,
.ai-cases__btn,
.price__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: min(420px, 100%);
  height: 60px;
  padding: 0 28px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--c-brand);
  box-shadow: var(--sh-brand);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.ai-btn:hover,
.ai-cases__btn:hover,
.price__btn:hover {
  background: var(--c-brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(30, 58, 255, .24);
  opacity: 1;
}
.ai-btn:active,
.ai-cases__btn:active,
.price__btn:active {
  transform: translateY(0);
}
.ai-btn::after,
.ai-cases__btn::after,
.price__btn::after {
  content: "→";
  font-size: 18px;
  transition: transform var(--t-fast);
}
.ai-btn:hover::after,
.ai-cases__btn:hover::after,
.price__btn:hover::after {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .ai-steps__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ai-steps__grid--3 { grid-template-columns: 1fr; }
  .ai-btn,
  .ai-cases__btn,
  .price__btn { min-width: 100%; }
}


/* ===========================================================
   compare : 一般的な制作会社との違い（比較表）
   =========================================================== */
.compare {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--c-bg-soft);
  color: var(--c-ink);
}

.compare__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.compare__title {
  margin: 0 0 clamp(12px, 1.6vw, 18px);
  text-align: center;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--c-ink);
}
.compare__title::before {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--c-brand), var(--c-accent));
}

.compare__lead {
  margin: 0 0 clamp(28px, 4vw, 44px);
  text-align: center;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  color: var(--c-ink-2);
}

.compare__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  table-layout: fixed;
}

.compare__th,
.compare__rowhead,
.compare__cell {
  padding: clamp(16px, 2.2vw, 26px) clamp(10px, 1.6vw, 20px);
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--c-line);
}

.compare__table tbody tr:last-child .compare__rowhead,
.compare__table tbody tr:last-child .compare__cell {
  border-bottom: 0;
}

/* header row */
.compare__th {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-ink-2);
  background: var(--c-bg-tint);
}
.compare__th--label { width: 30%; background: #fff; }
.compare__th--us {
  width: 38%;
  background: var(--c-brand);
  color: #fff;
}
.compare__th--them { width: 32%; }

.compare__brand {
  font-family: var(--ff-en);
  font-size: clamp(14px, 1.7vw, 19px);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.compare__sub {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 500;
  color: var(--c-ink-3);
}

/* row label */
.compare__rowhead {
  text-align: left;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-bg-soft);
}

/* value cells */
.compare__cell { background: #fff; }
.compare__cell--us {
  background: var(--c-brand-soft);
}
.compare__value {
  display: block;
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.compare__cell--us .compare__value { color: var(--c-brand-deep); }
.compare__cell--them .compare__value { color: var(--c-ink-3); }

.compare__note {
  display: block;
  margin-top: 6px;
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  color: var(--c-brand);
}

/* message band */
.compare__message {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(22px, 3vw, 32px);
  text-align: center;
  background: #fff;
  border: 1px solid var(--c-brand-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.compare__message-head {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--c-brand-deep);
  line-height: 1.4;
}
.compare__message-body {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--c-ink-2);
}

.compare__cta {
  margin-top: clamp(28px, 4vw, 40px);
  text-align: center;
}

@media (max-width: 640px) {
  .compare__table { table-layout: auto; }
  .compare__th--label,
  .compare__th--us,
  .compare__th--them { width: auto; }
  .compare__rowhead {
    white-space: nowrap;
  }
}


/* ===========================================================
   ai-cases : 提案事例
   =========================================================== */
.ai-cases {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  overflow: hidden;
  color: var(--c-ink);
  background: var(--c-bg);
}
.ai-cases__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(30, 58, 255, .06), transparent 65%);
  pointer-events: none;
}
.ai-cases__bg::after { display: none; }

.ai-cases__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.ai-cases__title {
  margin: 0 0 clamp(28px, 4vw, 44px);
  text-align: center;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: 0.01em;
  color: var(--c-ink);
  text-shadow: none;
  line-height: 1.3;
}
.ai-cases__title::before {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--c-brand), var(--c-accent));
}

.ai-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
  align-items: stretch;
}

.ai-case {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-2);
  backdrop-filter: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.ai-case:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
}

.ai-case__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--c-bg-tint);
  overflow: hidden;
}
.ai-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-base);
}
.ai-case:hover .ai-case__media img {
  transform: scale(1.04);
}

.ai-case__body {
  padding: clamp(20px, 2.4vw, 26px);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.ai-case__head {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-ink);
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
}

.ai-case__dl {
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-ink-2);
}

.ai-case__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px;
  align-items: baseline;
}

.ai-case__row dt {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-brand);
  white-space: nowrap;
}

.ai-case__row dd { margin: 0; }

.ai-cases__cta {
  display: grid;
  place-items: center;
  margin-top: clamp(36px, 5vw, 52px);
}

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


/* ===========================================================
   FAQ
   =========================================================== */
.faq {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--c-bg-soft);
}

.faq__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.faq__title {
  text-align: center;
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  line-height: 1.35;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-1);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.faq-item:hover {
  box-shadow: var(--sh-2);
  border-color: var(--c-brand-line);
}
.faq-item[open] {
  border-color: var(--c-brand-line);
}

.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-q__text {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* Q/A badge */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: var(--c-brand);
  letter-spacing: 0;
  box-shadow: none;
}
.faq-icon--a {
  background: var(--c-ink);
}

/* Arrow */
.faq-arrow {
  width: 24px;
  height: 24px;
  justify-self: end;
  position: relative;
  transition: transform var(--t-base);
}
.faq-arrow::before,
.faq-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--c-ink-3);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t-base), background var(--t-base);
}
.faq-arrow::before { transform: translate(-70%, -50%) rotate(45deg); }
.faq-arrow::after  { transform: translate(-30%, -50%) rotate(-45deg); }

.faq-item[open] .faq-arrow::before { transform: translate(-70%, -50%) rotate(-45deg); background: var(--c-brand); }
.faq-item[open] .faq-arrow::after  { transform: translate(-30%, -50%) rotate(45deg); background: var(--c-brand); }

.faq-a {
  border-top: 1px solid var(--c-line);
  background: var(--c-bg-soft);
}
.faq-a__inner {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px 22px;
}
.faq-a__text {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 2;
  color: var(--c-ink-2);
}

@media (max-width: 720px) {
  .faq-q {
    grid-template-columns: 28px 1fr 24px;
    gap: 12px;
    padding: 16px 16px;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .faq-a__inner {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 16px 16px 18px;
  }
}


/* ===========================================================
   Price plans
   =========================================================== */
.price {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  overflow: hidden;
  background: var(--c-bg);
}
.price__bg { display: none; } /* 旧背景は撤去 */

.price__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.price__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.price__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  line-height: 1.3;
}

.price__lead {
  margin: 0;
  color: var(--c-ink-2);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
  align-items: stretch;
  margin-top: clamp(20px, 2.6vw, 32px);
  padding-top: 24px; /* badge space */
}

.plan {
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-2);
  padding: clamp(28px, 3vw, 36px) clamp(20px, 2.4vw, 28px);
  text-align: center;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
}

.plan__name {
  margin: 0 0 18px;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 0.04em;
}

.plan__price {
  margin: 0 0 8px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.plan__price-num {
  font-family: var(--ff-en);
  font-size: clamp(52px, 5.6vw, 76px);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan__price-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-ink-2);
}

.plan__sub {
  margin: 0 0 22px;
  color: var(--c-ink-3);
  font-weight: 400;
  font-size: 14px;
}

.plan__line {
  border: 0;
  height: 1px;
  background: var(--c-line);
  margin: 0 0 22px;
}

.plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  color: var(--c-ink-2);
  flex: 1;
}

.plan__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-brand-soft);
  box-shadow: none;
}
.plan__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--c-brand);
  border-bottom: 2px solid var(--c-brand);
  transform: rotate(-45deg);
}

/* Featured */
.plan--featured {
  border: 2px solid var(--c-brand);
  box-shadow: 0 22px 44px rgba(30, 58, 255, .15);
  transform: translateY(-12px);
  background: linear-gradient(180deg, #FAFBFF 0%, #fff 60%);
}
.plan--featured:hover {
  transform: translateY(-15px);
}

.plan__badge {
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: var(--c-brand);
  box-shadow: var(--sh-brand);
  border: none;
}

.price__note {
  margin: clamp(20px, 3vw, 28px) 0 0;
  text-align: center;
  color: var(--c-ink-3);
  font-weight: 400;
  font-size: 13px;
}

.price__cta {
  margin-top: clamp(28px, 4vw, 40px);
  display: grid;
  place-items: center;
  gap: 10px;
}

.price__cta-sub {
  margin: 0;
  color: var(--c-ink-3);
  font-weight: 400;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 980px) {
  .price__grid {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }
  .plan--featured {
    transform: translateY(0);
  }
  .plan--featured:hover {
    transform: translateY(-3px);
  }
}


/* ===========================================================
   CTA (cyber) — refined modern CTA
   =========================================================== */
.cta-cyber {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) 0;
  color: #fff;
  background: var(--c-ink);
}

.cta-cyber__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 20%, rgba(30, 58, 255, .42), transparent 60%),
    radial-gradient(700px 440px at 80% 90%, rgba(106, 130, 255, .26), transparent 65%),
    linear-gradient(180deg, #0E1424 0%, #131C36 60%, #0E1424 100%);
}
.cta-cyber__bg::after { display: none; }

.cta-cyber__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
  text-align: center;
}

.cta-cyber__title {
  margin: 0 0 20px;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.cta-cyber__lead {
  margin: 0 auto 32px;
  width: min(720px, 100%);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: none;
}

.cta-cyber__btnarea {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.cta-cyber__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: min(420px, 90vw);
  height: 64px;
  padding: 0 30px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 17px);
  letter-spacing: 0.08em;
  color: var(--c-ink);
  background: #fff;
  border: none;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, .35),
    0 0 0 1px rgba(255, 255, 255, .08);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.cta-cyber__btn::after {
  content: "→";
  font-size: 18px;
  color: var(--c-brand);
  transition: transform var(--t-fast);
}
.cta-cyber__btn:hover {
  transform: translateY(-2px);
  background: var(--c-brand-soft);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, .40),
    0 0 0 1px rgba(255, 255, 255, .12);
  opacity: 1;
}
.cta-cyber__btn:hover::after {
  transform: translateX(4px);
}
.cta-cyber__btn:active { transform: translateY(0); }

.cta-cyber__cursor { display: none; }

.cta-cyber__note {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 720px) {
  .cta-cyber__btn { height: 58px; }
}


/* ===========================================================
   Small-screen polish
   =========================================================== */
@media (max-width: 600px) {
  /* Hero */
  .hero-booth { min-height: clamp(440px, 92vw, 560px); }
  .hero-booth__inner { padding-block: clamp(48px, 14vw, 80px); }
  .hero-booth__headline {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.4;
  }
  .hero-booth__lead { line-height: 1.85; }

  /* Innovation pointer items */
  .innovation .pointer-box-item { padding: 12px 14px; }
  .innovation .pointer-box-item img { width: 60px; height: auto; }
  .innovation .pointer-box p { font-size: 15px; }

  /* ai-steps cards (small mobile keeps 2-col but tighter) */
  .ai-steps__grid--4 { gap: 10px; }
  .ai-card { padding: 20px 14px; }
  .ai-card__icon { height: 76px; }
  .ai-card__icon img { width: min(96px, 70%); }
  .ai-card__label { font-size: 13px; }

  /* ai-cases */
  .ai-case__body { padding: 18px; }
  .ai-case__row { grid-template-columns: 48px 1fr; }

  /* Price */
  .price__grid { gap: 18px; }
  .plan { padding: 24px 20px 22px; }
  .plan__price-num { font-size: 56px; }

  /* CTA */
  .cta-cyber__title { letter-spacing: 0.02em; }
}

@media (max-width: 380px) {
  .ai-steps__grid--4 { grid-template-columns: 1fr; }
}

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


/* ===========================================================
   v2 PUNCH-UP — bolder, on-site, sales-driven look
   (declared late so it wins on equal specificity)
   =========================================================== */

/* Shared sub-headline under section titles */
.ai-steps__subhead,
.ai-cases__subhead,
.faq__subhead {
  text-align: center;
  margin: -6px 0 clamp(28px, 3.4vw, 44px);
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-ink-2);
}

/* Shared CTA reassurance note */
.section-cta__note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-ink-3);
}
.section-cta__note::before {
  content: "\2713 ";
  color: var(--c-brand);
  font-weight: 900;
}

/* ---------- About : feature cards ------------------------- */
.innovation .title-box p:nth-of-type(2) {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.32;
}
.about-features {
  background: var(--c-bg-soft);
}
.about-features__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 40px) clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.feat-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  border-top: 6px solid var(--c-brand);
  box-shadow: var(--sh-2);
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.4vw, 30px) clamp(26px, 2.8vw, 34px);
  text-align: center;
}
.feat-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--c-accent);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 5px 13px;
  border-radius: var(--r-sm);
  transform: rotate(3deg);
  box-shadow: var(--sh-1);
}
.feat-card__icon {
  height: 92px;
  display: grid;
  place-items: center;
}
.feat-card__icon img { width: min(90px, 46%); height: auto; }
.feat-card__title {
  margin: 14px 0 10px;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  line-height: 1.35;
}
.feat-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-ink-2);
}

/* ---------- 課題 : warning / checklist cards -------------- */
.ai-steps__title { margin-bottom: 12px; }

.prob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 18px);
}
.prob-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-top: 5px solid #E2574C;
  border-radius: var(--r-md);
  padding: clamp(20px, 2.4vw, 28px) clamp(16px, 1.8vw, 22px);
  box-shadow: var(--sh-1);
  overflow: hidden;
}
.prob-card__no {
  position: absolute;
  top: 6px;
  right: 12px;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: rgba(226, 87, 76, 0.16);
  letter-spacing: -0.02em;
}
.prob-card__label {
  position: relative;
  margin: 0 0 8px;
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--c-ink);
}
.prob-card__label::before {
  content: "\2715";
  margin-right: 8px;
  color: #E2574C;
  font-weight: 900;
}
.prob-card__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-ink-3);
}

/* bridge from problems -> strengths */
.ai-steps__bridge {
  display: flex;
  justify-content: center;
  margin: clamp(34px, 4.6vw, 60px) 0 clamp(36px, 4.8vw, 62px);
}
.ai-steps__bridge-text {
  position: relative;
  background: var(--c-ink);
  color: #fff;
  font-weight: 800;
  font-size: clamp(15px, 1.9vw, 21px);
  letter-spacing: 0.02em;
  padding: 15px 32px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-2);
}
.ai-steps__bridge-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--c-ink);
}

/* ---------- 強み : win cards with big numbers ------------- */
.win-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
}
.win-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  border-top: 6px solid var(--c-brand);
  box-shadow: var(--sh-2);
  padding: clamp(26px, 2.8vw, 36px) clamp(18px, 2vw, 24px) clamp(24px, 2.6vw, 30px);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.win-card:hover { transform: translateY(-3px); box-shadow: var(--sh-3); }
.win-card__no {
  display: block;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--c-brand);
  opacity: 0.16;
  margin-bottom: 4px;
}
.win-card__title {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--c-ink);
}
.win-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-ink-2);
}

/* ---------- 比較表 : make us column dominate -------------- */
.compare__lead b { color: var(--c-brand-deep); font-weight: 900; }

.compare__table { box-shadow: var(--sh-3); }
.compare__th--us {
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-deep) 100%);
  color: #fff;
}
.compare__win {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 14px;
  border-radius: var(--r-pill);
  background: var(--c-accent);
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.compare__brand { display: block; font-size: clamp(15px, 1.9vw, 21px); }

.compare__th--us,
.compare__cell--us {
  border-left: 2px solid var(--c-brand);
  border-right: 2px solid var(--c-brand);
}
.compare__table tbody tr:last-child .compare__cell--us {
  border-bottom: 2px solid var(--c-brand);
}
.compare__cell--us { background: var(--c-brand-soft); }
.compare__cell--us .compare__value {
  color: var(--c-brand-deep);
  font-size: clamp(28px, 4.4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.compare__cell--us .compare__value small { font-size: 0.42em; font-weight: 800; margin-left: 2px; }
.compare__cell--them .compare__value {
  color: var(--c-ink-3);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700;
}
.compare__note { font-weight: 800; }

.compare__message {
  background: var(--c-ink);
  color: #fff;
  border: none;
  box-shadow: var(--sh-3);
}
.compare__message-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--c-accent);
  font-weight: 800;
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.08em;
}
.compare__message-head {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 900;
  letter-spacing: 0.01em;
}
.compare__message-body { color: rgba(255, 255, 255, 0.86); }

/* ---------- 事例 : results front-and-center --------------- */
.ai-cases__title { margin-bottom: 12px; }
.ai-case__media { position: relative; }
.ai-case__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-brand);
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 13px;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-2);
}
.ai-case__head {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 900;
  border-bottom: 0;
  padding-bottom: 0;
}
.ai-case__row { grid-template-columns: 48px 1fr; gap: 10px; align-items: start; }
.ai-case__row dt {
  background: var(--c-bg-tint);
  color: var(--c-ink-2);
  border-radius: var(--r-sm);
  padding: 3px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.ai-case__result {
  margin-top: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-deep) 100%);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--sh-brand);
}
.ai-case__result-label {
  grid-row: 1 / span 2;
  align-self: center;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.ai-case__result-num {
  grid-column: 2;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
}
.ai-case__result-num small { font-size: 0.5em; font-weight: 800; margin-left: 2px; }
.ai-case__result-text {
  grid-column: 2;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- FAQ : reassurance band ------------------------ */
.faq__title { font-weight: 900; }
.faq__title::before {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--c-brand), var(--c-accent));
}
.faq__subhead { margin-bottom: clamp(20px, 2.6vw, 30px); }
.faq__assure {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(26px, 3.2vw, 38px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.faq__assure li {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-brand-line);
  border-radius: var(--r-md);
  padding: 16px 12px;
  text-align: center;
  font-weight: 800;
  font-size: clamp(12px, 1.3vw, 14px);
  line-height: 1.4;
  color: var(--c-ink);
  box-shadow: var(--sh-1);
}
.faq__assure li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

/* ---------- 料金 : choose by who-it-fits ------------------ */
.plan { overflow: visible; }
.plan__for {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  background: var(--c-bg-tint);
  color: var(--c-ink-2);
  font-weight: 800;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.03em;
}
.plan__for--featured { background: var(--c-brand); color: #fff; }
.plan__name { font-size: clamp(17px, 1.7vw, 21px); font-weight: 900; }
.plan__price-num { font-weight: 900; }
.plan__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(20px, 2.4vw, 28px);
  height: 52px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-family: var(--ff);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--c-brand);
  background: #fff;
  border: 2px solid var(--c-brand);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.plan__btn::after { content: "\2192"; transition: transform var(--t-fast); }
.plan__btn:hover { background: var(--c-brand); color: #fff; transform: translateY(-2px); }
.plan__btn:hover::after { transform: translateX(4px); }
.plan__btn--featured { background: var(--c-brand); color: #fff; box-shadow: var(--sh-brand); }
.plan__btn--featured:hover { background: var(--c-brand-deep); }
.plan__badge {
  font-size: 13px;
  padding: 7px 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.plan--featured { border-width: 3px; }

/* ---------- final CTA : stronger ------------------------- */
.cta-cyber__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--c-accent);
  font-weight: 800;
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.1em;
}
.cta-cyber__title {
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.28;
  letter-spacing: 0.01em;
}
.cta-cyber__btn {
  height: 68px;
  min-width: min(460px, 92vw);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 800;
}

/* ---------- v2 responsive -------------------------------- */
@media (max-width: 980px) {
  .about-features__inner { grid-template-columns: 1fr; }
  .prob-grid { grid-template-columns: repeat(2, 1fr); }
  .win-grid { grid-template-columns: repeat(2, 1fr); }
  .faq__assure { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .prob-grid { grid-template-columns: 1fr; }
  .win-grid { grid-template-columns: 1fr; }
  .ai-case__result-num { font-size: clamp(26px, 7vw, 34px); }
}


/* ===========================================================
   v3 KOTE-KOTE — grittier, louder, on-site trade-show energy
   =========================================================== */

/* Section ribbon eyebrow (skewed banner tag) --------------- */
.sec-ribbon {
  display: table;
  margin: 0 auto 18px;
  padding: 10px 28px 11px;
  background: var(--c-ink);
  color: #fff;
  font-weight: 900;
  font-size: clamp(17px, 2.2vw, 26px);
  letter-spacing: 0.12em;
  line-height: 1;
  transform: skewX(-9deg);
  box-shadow: 6px 6px 0 rgba(14, 20, 36, 0.14);
}
.sec-ribbon::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 11px;
  background: var(--c-accent);
  transform: skewX(9deg);
}
.sec-ribbon--warn { background: #E2574C; box-shadow: 5px 5px 0 rgba(226, 87, 76, 0.2); }
.sec-ribbon--warn::before { background: #fff; }
.sec-ribbon--dark { background: var(--c-accent); color: var(--c-ink); box-shadow: 5px 5px 0 rgba(0,0,0,0.3); }
.sec-ribbon--dark::before { background: var(--c-ink); }

/* Marker-pen highlight ------------------------------------- */
.mk,
.compare__lead b {
  background: linear-gradient(transparent 56%, rgba(201, 168, 106, 0.55) 0);
  font-weight: 900;
  padding: 0 2px;
}

/* Heavier cards across the board --------------------------- */
.feat-card,
.win-card,
.plan,
.ai-case {
  border-width: 2px;
}
.feat-card { border-top-width: 7px; box-shadow: 0 16px 34px rgba(14,20,36,.10); }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); transition: transform var(--t-base), box-shadow var(--t-base); }
.feat-card__tag {
  top: -10px;
  right: 16px;
  padding: 6px 15px;
  font-size: 13px;
  transform: rotate(4deg) skewX(-6deg);
}

/* ---------- 課題 : frame it as a loud WARNING zone -------- */
.prob-grid {
  background: #FFF5F4;
  border: 2px dashed rgba(226, 87, 76, 0.4);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.8vw, 34px);
}
.prob-card {
  border-width: 2px;
  border-top-width: 6px;
  box-shadow: 0 10px 22px rgba(226, 87, 76, 0.08);
}
.prob-card__label { font-size: clamp(16px, 1.9vw, 22px); }

/* louder bridge */
.ai-steps__bridge-text {
  font-size: clamp(16px, 2.1vw, 23px);
  padding: 17px 38px;
  transform: skewX(-6deg);
}
.ai-steps__bridge-text > * { display: inline-block; transform: skewX(6deg); }

/* ---------- 強み : dark high-contrast band ---------------- */
.win-band {
  position: relative;
  margin-top: clamp(10px, 1.6vw, 18px);
  padding: clamp(38px, 5vw, 66px) clamp(20px, 3vw, 46px) clamp(42px, 5.6vw, 70px);
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 15% 0%, rgba(30, 58, 255, 0.34), transparent 60%),
    linear-gradient(160deg, #0E1424 0%, #131C36 60%, #0E1424 100%);
  box-shadow: var(--sh-3);
}
.win-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(160deg, #000, transparent 70%);
          mask-image: linear-gradient(160deg, #000, transparent 70%);
  pointer-events: none;
}
.win-band > * { position: relative; z-index: 1; }

.ai-steps__title--onDark { color: #fff; margin-bottom: 12px; }
.ai-steps__title--onDark::before {
  background: linear-gradient(90deg, var(--c-accent), #fff);
}
.ai-steps__subhead--onDark { color: rgba(255, 255, 255, 0.82); }
.ai-steps__subhead--onDark b {
  color: #fff;
  background: linear-gradient(transparent 56%, rgba(201, 168, 106, 0.6) 0);
  padding: 0 3px;
  font-weight: 900;
}
.win-band .win-card { border-color: transparent; border-top: 6px solid var(--c-brand); }
.win-band .win-card__no { opacity: 0.22; }

/* ---------- 事例 : bolder result bar --------------------- */
.ai-case { box-shadow: 0 14px 30px rgba(14,20,36,.10); }
.ai-case__tag { transform: skewX(-6deg); }
.ai-case__result { padding: 16px 18px; }

/* ---------- FAQ assure : chunkier ------------------------- */
.faq__assure li { border-width: 2px; padding: 18px 12px; }

/* ---------- 料金 : featured shouts louder ----------------- */
.plan--featured {
  border-color: var(--c-brand);
  box-shadow: 0 26px 52px rgba(30, 58, 255, 0.22);
}
.plan__badge {
  transform: translateX(-50%) skewX(-8deg);
  padding: 8px 24px;
}
.plan__badge > * { display: inline-block; transform: skewX(8deg); }

/* v3 responsive */
@media (max-width: 560px) {
  .sec-ribbon { font-size: 17px; letter-spacing: 0.08em; padding: 9px 22px 10px; }
  .prob-grid { padding: 16px; }
}


/* ===========================================================
   v4 FLASHY / HOT — loud LP energy, heat over polish
   =========================================================== */
:root {
  --c-hot:   #FF3D2E;
  --c-hot-2: #FF7A00;
  --g-hot:   linear-gradient(100deg, #FF3D2E 0%, #FF7A00 100%);
  --g-brand-hot: linear-gradient(100deg, #1E3AFF 0%, #FF3D2E 100%);
}

/* Content CTAs go HOT + glow (hero MV left untouched) ------- */
.ai-btn,
.ai-cases__btn,
.price__btn {
  background: var(--g-hot);
  box-shadow: 0 16px 34px rgba(255, 61, 46, 0.42);
  font-weight: 900;
  letter-spacing: 0.04em;
  height: 66px;
  font-size: clamp(15px, 1.6vw, 18px);
}
.ai-btn:hover,
.ai-cases__btn:hover,
.price__btn:hover {
  background: var(--g-hot);
  filter: brightness(1.06);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 46px rgba(255, 61, 46, 0.55);
}

/* Louder section titles + fat hot brush under them --------- */
.ai-steps__title,
.compare__title,
.ai-cases__title,
.faq__title,
.price__title {
  font-size: clamp(30px, 4.4vw, 56px);
  letter-spacing: -0.01em;
}
.ai-steps__title::before,
.compare__title::before,
.ai-cases__title::before,
.faq__title::before {
  width: 80px;
  height: 10px;
  border-radius: 3px;
  background: var(--g-hot);
  transform: skewX(-12deg);
}

/* LP bracket wings on catch lines -------------------------- */
.value-band__lead::before,
.value-band__lead::after,
.ai-steps__subhead::before,
.ai-steps__subhead::after,
.ai-cases__subhead::before,
.ai-cases__subhead::after,
.faq__subhead::before,
.faq__subhead::after {
  display: inline-block;
  color: var(--c-hot);
  font-weight: 900;
  transform: translateY(2px) scaleY(1.4);
  opacity: 0.9;
}
.value-band__lead::before,
.ai-steps__subhead::before,
.ai-cases__subhead::before,
.faq__subhead::before { content: "＼"; margin-right: 8px; }
.value-band__lead::after,
.ai-steps__subhead::after,
.ai-cases__subhead::after,
.faq__subhead::after { content: "／"; margin-left: 8px; }
.ai-steps__subhead--onDark::before,
.ai-steps__subhead--onDark::after { color: var(--c-accent); }

/* ---------- Value band : full-bleed HOT strip ------------- */
.value-band {
  position: relative;
  overflow: hidden;
  background: var(--g-hot);
  color: #fff;
  padding: clamp(40px, 5.5vw, 72px) 0;
}
.value-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.value-band__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
  text-align: center;
}
.value-band__lead {
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 0 rgba(0,0,0,0.12);
}
.value-band__lead::before,
.value-band__lead::after { color: rgba(255,255,255,0.9); }
.value-band__lead b {
  color: #FFE600;
  font-size: 1.12em;
}
.value-band__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: stretch;
}
.value-band__list li {
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--r-lg);
  padding: clamp(18px, 2.4vw, 30px) 10px;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.value-band__num {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 0 rgba(0,0,0,0.15);
}
.value-band__num small { font-size: 0.4em; font-weight: 800; margin-left: 2px; }
.value-band__cap {
  font-weight: 800;
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.04em;
  color: #fff;
}
.value-band__note {
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 800;
  color: #fff;
}

/* ---------- Problem zone : hotter, louder ----------------- */
.prob-grid {
  background: #FFF0EE;
  border: 3px dashed var(--c-hot);
}
.prob-card {
  border-top: 7px solid var(--c-hot);
  box-shadow: 0 12px 26px rgba(255, 61, 46, 0.12);
}
.prob-card__no { color: rgba(255, 61, 46, 0.18); }
.prob-card__label::before { content: "\2757"; color: var(--c-hot); margin-right: 6px; }

.ai-steps__bridge-text {
  background: var(--g-brand-hot);
  box-shadow: 0 16px 34px rgba(255, 61, 46, 0.4);
}
.ai-steps__bridge-text::after { border-top-color: #FF3D2E; }

/* ---------- Feature cards : colored + punchy -------------- */
.feat-card { border-top: 8px solid var(--c-hot); }
.feat-card__tag { background: var(--g-hot); }
.feat-card__title { font-size: clamp(21px, 2.4vw, 29px); }

/* ---------- Compare : burst stamp + hot message ----------- */
.compare__table tbody tr:first-child .compare__cell--us { position: relative; }
.compare__table tbody tr:first-child .compare__cell--us::after {
  content: "無料!!";
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--g-hot);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  transform: rotate(-14deg);
  box-shadow: 0 8px 18px rgba(255, 61, 46, 0.45);
  border: 2px dashed #fff;
}
.compare__win { background: var(--g-hot); }
.compare__message { background: var(--g-brand-hot); }
.compare__message-eyebrow { color: #FFE600; }

/* ---------- Cases : hot result bars ----------------------- */
.ai-case__result { background: var(--g-hot); box-shadow: 0 14px 30px rgba(255, 61, 46, 0.4); }
.ai-case__tag { background: var(--g-hot); }

/* ---------- FAQ assure : hot check ------------------------ */
.faq__assure li::before { background: var(--g-hot); }
.faq__assure li { border-color: rgba(255, 61, 46, 0.4); }

/* ---------- Price : featured shouts, flame badge ---------- */
.plan--featured {
  border: 3px solid var(--c-hot);
  box-shadow: 0 28px 56px rgba(255, 61, 46, 0.28);
}
.plan__for--featured { background: var(--g-hot); }
.plan__badge { background: var(--g-hot); box-shadow: 0 10px 22px rgba(255, 61, 46, 0.45); }
.plan__badge::before { content: "★ "; }
.plan__btn--featured { background: var(--g-hot); box-shadow: 0 14px 30px rgba(255, 61, 46, 0.42); }
.plan__btn--featured:hover { background: var(--g-hot); filter: brightness(1.06); }

/* ---------- Final CTA : hot fire background --------------- */
.cta-cyber__bg {
  background:
    radial-gradient(760px 420px at 50% 12%, rgba(255, 61, 46, 0.5), transparent 60%),
    radial-gradient(680px 420px at 82% 92%, rgba(255, 122, 0, 0.34), transparent 62%),
    linear-gradient(180deg, #14060A 0%, #2A0F12 55%, #14060A 100%);
}
.cta-cyber__eyebrow { color: #FFD34D; }
.cta-cyber__btn { background: var(--g-hot); color: #fff; }
.cta-cyber__btn::after { color: #fff; }
.cta-cyber__btn:hover { background: var(--g-hot); filter: brightness(1.08); }

/* ---------- v4 responsive -------------------------------- */
@media (max-width: 640px) {
  .value-band__list { grid-template-columns: 1fr; gap: 12px; }
  .value-band__list li { flex-direction: row; justify-content: center; gap: 14px; }
}


/* ===========================================================
   v5 PHOTOS + BACKGROUND CONTRAST — stock imagery, louder bg
   =========================================================== */

/* Feature cards now lead with a PHOTO (icons removed) ------- */
.feat-card {
  padding: 0 0 clamp(24px, 2.8vw, 34px);
  overflow: hidden;
}
.feat-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: clamp(18px, 2vw, 24px);
  background: var(--c-bg-tint);
}
.feat-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-base);
}
.feat-card:hover .feat-card__photo img { transform: scale(1.05); }
.feat-card__title,
.feat-card__desc { padding-inline: clamp(20px, 2.2vw, 30px); }
.feat-card__tag { z-index: 2; }

/* Full-bleed photo showcase bands -------------------------- */
.showcase {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: clamp(76px, 12vw, 150px) 0;
  overflow: hidden;
}
.showcase::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 7px;
  background: var(--g-hot);
}
.showcase__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.showcase--right .showcase__inner { text-align: right; }
.showcase__tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  background: var(--g-hot);
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(11px, 1.3vw, 14px);
  letter-spacing: 0.14em;
  box-shadow: 0 10px 24px rgba(255, 61, 46, 0.4);
}
.showcase__catch {
  margin: 0 0 14px;
  font-size: clamp(30px, 5.6vw, 64px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.5);
}
.showcase__catch b {
  color: #FFE600;
  background: linear-gradient(transparent 60%, rgba(255, 61, 46, 0.85) 0);
  padding: 0 4px;
}
.showcase__sub {
  margin: 0;
  font-size: clamp(15px, 1.9vw, 21px);
  font-weight: 700;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* Louder section backgrounds (kill the flat white) --------- */
.compare {
  background:
    radial-gradient(720px 460px at 88% 8%, rgba(255, 61, 46, 0.10), transparent 60%),
    linear-gradient(160deg, var(--c-brand-soft) 0%, #FFFFFF 55%);
}
.compare .sec-ribbon { background: var(--g-hot); }

.ai-cases {
  background:
    radial-gradient(680px 420px at 12% 6%, rgba(30, 58, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--c-bg-soft) 100%);
}
.faq {
  background:
    radial-gradient(680px 420px at 85% 10%, rgba(255, 122, 0, 0.10), transparent 60%),
    var(--c-bg-soft);
}
.price {
  background:
    radial-gradient(760px 480px at 15% 6%, rgba(30, 58, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--c-bg-tint) 100%);
}

/* v5 responsive */
@media (max-width: 640px) {
  .showcase { padding: clamp(56px, 16vw, 90px) 0; }
  .showcase--right .showcase__inner { text-align: left; }
}


/* ===========================================================
   v6 — orange into the MV, louder About, photo problem cards
   =========================================================== */

/* ---------- MV : add a little orange for tonmana ---------- */
.hero-booth::before {
  background:
    linear-gradient(100deg, rgba(8, 12, 26, 0.92) 0%, rgba(10, 16, 34, 0.78) 42%, rgba(12, 20, 44, 0.45) 100%),
    radial-gradient(1100px 700px at 12% 18%, rgba(30, 58, 255, 0.45), transparent 62%),
    radial-gradient(700px 480px at 93% 90%, rgba(255, 90, 30, 0.36), transparent 60%);
}
.hero-booth::after {
  background: linear-gradient(90deg, var(--c-brand) 0%, #5B73FF 45%, #FF7A00 100%);
}
.hero-booth__accent::after { background: var(--g-hot); }
.hero-booth__badge::before {
  background: var(--c-hot);
  box-shadow: 0 0 0 4px rgba(255, 61, 46, 0.28);
}
.hero-booth__cta-note::before { color: var(--c-hot-2); }
.hero-chip:nth-child(even) { border-top-color: var(--c-hot); }
.hero-chip:nth-child(even) .hero-chip__num { color: #E8590C; }

/* ---------- About : make the intro pop ------------------- */
.mk-hot {
  background: linear-gradient(transparent 54%, rgba(255, 122, 0, 0.6) 0);
  font-weight: 900;
  padding: 0 3px;
  color: var(--c-ink);
}
.innovation .title-box p:nth-of-type(1) {
  background: var(--g-hot);
  color: #fff;
  padding: 8px 20px;
  transform: skewX(-9deg);
  box-shadow: 5px 5px 0 rgba(255, 61, 46, 0.2);
  gap: 0;
  margin-bottom: 18px;
}
.innovation .title-box p:nth-of-type(1)::before { display: none; }
.innovation .title-box p:nth-of-type(2) {
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1.28;
}
.innovation .s-mark { position: relative; }
.s-mark__badge {
  position: absolute;
  right: clamp(-6px, -0.5vw, 0px);
  bottom: -14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(100px, 13vw, 142px);
  height: clamp(100px, 13vw, 142px);
  border-radius: 50%;
  background: var(--g-hot);
  color: #fff;
  transform: rotate(-12deg);
  border: 3px dashed #fff;
  box-shadow: 0 16px 34px rgba(255, 61, 46, 0.45);
  text-align: center;
  z-index: 2;
}
.s-mark__badge b {
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}
.s-mark__badge span {
  margin-top: 3px;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ---------- 課題 : photo cards, 2-up, big presence ------- */
.prob-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(22px, 3vw, 38px);
}
.prob-card {
  display: grid;
  grid-template-columns: clamp(120px, 34%, 210px) 1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(226, 87, 76, 0.28);
  border-left: 8px solid var(--c-hot);
  box-shadow: 0 16px 34px rgba(226, 87, 76, 0.14);
}
.prob-card__photo {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-tint);
}
.prob-card__photo img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.prob-card__no {
  position: absolute;
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
  padding: 6px 13px;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  background: var(--c-hot);
  opacity: 1;
}
.prob-card__body {
  padding: clamp(16px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.prob-card__label {
  margin: 0;
  font-size: clamp(17px, 2.1vw, 24px);
}
.prob-card__note {
  margin: 0;
  font-size: clamp(13px, 1.4vw, 15px);
}

/* v6 responsive */
@media (max-width: 560px) {
  .prob-grid { grid-template-columns: 1fr; }
  .prob-card { grid-template-columns: clamp(110px, 38%, 160px) 1fr; }
  .s-mark__badge { width: 92px; height: 92px; }
}
@media (max-width: 400px) {
  .prob-card { grid-template-columns: 1fr; }
  .prob-card__photo img { min-height: 150px; }
}


/* ===========================================================
   v7 — MV typographic intro animation
   =========================================================== */
@keyframes heroCharIn {
  0%   { opacity: 0; transform: translateY(0.7em) rotate(8deg); filter: blur(4px); }
  60%  { filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* per-character wave on the headline (spans injected by JS) */
.hero-booth__headline.is-split .ch {
  display: inline-block;
  opacity: 0;
  animation: heroCharIn 0.62s cubic-bezier(0.2, 0.65, 0.2, 1) both;
  animation-delay: calc(var(--i) * 0.045s + 0.12s);
  will-change: transform, opacity;
}
/* the accent band wipes in behind its characters */
.hero-booth__headline.is-split .hero-booth__accent {
  animation: heroAccentWipe 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: 0.34s;
  transform-origin: left center;
}
@keyframes heroAccentWipe {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* staggered rise for the rest of the hero */
.hero-booth__badge { animation: heroRise 0.7s ease both; animation-delay: 0.06s; }
.hero-booth__lead  { animation: heroRise 0.7s ease both; animation-delay: 0.55s; }
.hero-booth__chips .hero-chip { opacity: 0; animation: heroRise 0.6s ease both; }
.hero-booth__chips .hero-chip:nth-child(1) { animation-delay: 0.72s; }
.hero-booth__chips .hero-chip:nth-child(2) { animation-delay: 0.80s; }
.hero-booth__chips .hero-chip:nth-child(3) { animation-delay: 0.88s; }
.hero-booth__chips .hero-chip:nth-child(4) { animation-delay: 0.96s; }
.hero-booth__cta   { animation: heroRise 0.7s ease both; animation-delay: 1.06s; }
