@charset "UTF-8";
/* =========================================================
   15-web-coded-test.css — /test1 /test2 coded LP prototypes
   ========================================================= */

body:has(.lib-webtest),
#body_wrap.lib-webtest-page {
  background: #f4efe7;
}

body:has(.lib-webtest) .l-header,
body:has(.lib-webtest) .l-fixHeader,
body:has(.lib-webtest) .l-footer,
body:has(.lib-webtest) .lib-footer,
body:has(.lib-webtest) .p-breadcrumb,
body:has(.lib-webtest) .c-pageTitle,
body:has(.lib-webtest) .p-articleHead,
#body_wrap.lib-webtest-page .l-header,
#body_wrap.lib-webtest-page .l-fixHeader,
#body_wrap.lib-webtest-page .l-footer,
#body_wrap.lib-webtest-page .lib-footer,
#body_wrap.lib-webtest-page .p-breadcrumb,
#body_wrap.lib-webtest-page .c-pageTitle,
#body_wrap.lib-webtest-page .p-articleHead {
  display: none;
}

body:has(.lib-webtest) .l-mainContent,
body:has(.lib-webtest) .l-mainContent__inner,
body:has(.lib-webtest) .l-content,
body:has(.lib-webtest) .l-article,
body:has(.lib-webtest) .post_content,
#body_wrap.lib-webtest-page .l-mainContent,
#body_wrap.lib-webtest-page .l-mainContent__inner,
#body_wrap.lib-webtest-page .l-content,
#body_wrap.lib-webtest-page .l-article,
#body_wrap.lib-webtest-page .post_content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body:has(.lib-webtest) .post_content > *,
#body_wrap.lib-webtest-page .post_content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.lib-webtest {
  --lib-webtest-ink: #0b0b0b;
  --lib-webtest-muted: #5d5a52;
  --lib-webtest-line: rgba(21, 18, 12, 0.12);
  --lib-webtest-paper: #fffdf9;
  --lib-webtest-soft: #f6f1ea;
  --lib-webtest-gold: #b6953f;
  --lib-webtest-gold-dark: #8a6d21;
  --lib-webtest-shadow: 0 22px 55px rgba(45, 37, 24, 0.11);
  --lib-webtest-radius: 8px;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(182, 149, 63, 0.08), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fbf8f3 42%, #f4efe7 100%);
  color: var(--lib-webtest-ink);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.01em;
}

.lib-webtest *,
.lib-webtest *::before,
.lib-webtest *::after {
  box-sizing: border-box;
}

.lib-webtest a {
  color: inherit;
  text-decoration: none;
}

.lib-webtest a:focus-visible,
.lib-webtest button:focus-visible {
  outline: 2px solid #0a0a0a;
  outline-offset: 3px;
}

.lib-webtest__header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(100%, 1180px);
  min-height: 88px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(13, 13, 13, 0.06);
  backdrop-filter: blur(18px);
}

.lib-webtest__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.lib-webtest__logo img {
  display: block;
  width: clamp(170px, 16vw, 245px);
  height: auto;
}

.lib-webtest__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.lib-webtest__nav a,
.lib-webtest__footer nav a {
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.lib-webtest__nav a:hover,
.lib-webtest__footer nav a:hover {
  color: var(--lib-webtest-gold-dark);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.lib-webtest__headerCta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c6a74f 0%, #b08b2d 100%);
  color: #111;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(143, 105, 23, 0.22);
  white-space: nowrap;
}

.lib-webtest__headerCta span,
.lib-webtest__btn b {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
}

.lib-webtest__hero,
.lib-webtest__final {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
}

.lib-webtest__hero::after,
.lib-webtest__section--support::after,
.lib-webtest__final::after {
  content: "";
  position: absolute;
  inset-inline: 50%;
  bottom: -72px;
  width: 120vw;
  height: 170px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: rgba(232, 224, 211, 0.72);
  z-index: 0;
  pointer-events: none;
}

.lib-webtest__hero > *,
.lib-webtest__section > *,
.lib-webtest__final > * {
  position: relative;
  z-index: 1;
}

.lib-webtest__badge {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 36px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--lib-webtest-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(30, 26, 17, 0.06);
  font-weight: 800;
}

.lib-webtest__hero h1,
.lib-webtest__final h2 {
  margin: 0;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 1.22;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.lib-webtest__hero h1 span {
  display: block;
}

.lib-webtest__hero h1 em,
.lib-webtest__final h2 em,
.lib-webtest__section--reasons h2 em {
  color: var(--lib-webtest-gold);
  font-style: normal;
}

.lib-webtest__lead {
  margin: 24px 0 0;
  color: #24221d;
  font-weight: 800;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.8;
}

.lib-webtest__priceCard {
  width: fit-content;
  min-width: min(100%, 410px);
  margin: 30px 0 0;
  padding: 18px 28px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border: 1px solid rgba(20, 20, 20, 0.07);
  border-radius: var(--lib-webtest-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--lib-webtest-shadow);
}

.lib-webtest__priceCard span {
  color: #1d1b16;
  font-weight: 800;
}

.lib-webtest__priceCard strong {
  font-family: "Inter", sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.lib-webtest__priceCard b {
  font-size: clamp(20px, 2vw, 28px);
}

.lib-webtest__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.lib-webtest__btn {
  min-height: 64px;
  min-width: min(100%, 250px);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: var(--lib-webtest-radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lib-webtest__btn:active {
  transform: translateY(1px);
  opacity: 0.92;
}

.lib-webtest__btn--gold {
  background: linear-gradient(135deg, #c9ab55 0%, #af8b2d 100%);
  color: #111;
  box-shadow: 0 16px 32px rgba(143, 105, 23, 0.2);
}

.lib-webtest__btn--ghost {
  border: 1px solid rgba(146, 112, 35, 0.62);
  background: rgba(255, 255, 255, 0.72);
}

.lib-webtest__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(41, 32, 17, 0.16);
}

.lib-webtest__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.lib-webtest__icon * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lib-webtest__mock {
  position: relative;
  min-height: clamp(420px, 42vw, 610px);
}

.lib-webtest__laptop {
  position: absolute;
  left: 4%;
  right: -8%;
  top: 5%;
  height: 58%;
  transform: rotate(-1deg);
}

.lib-webtest__screen {
  position: absolute;
  inset: 0 4% 10% 0;
  overflow: hidden;
  border: 14px solid #111;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 42px 70px rgba(0, 0, 0, 0.18);
}

.lib-webtest__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  opacity: 0.94;
  transform: scale(1.02);
}

.lib-webtest__keyboard {
  position: absolute;
  left: 4%;
  right: 16%;
  bottom: 0;
  height: 16%;
  transform: skewX(-12deg);
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #dedbd5 0%, #b8b5ad 100%);
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.12);
}

.lib-webtest__tablet,
.lib-webtest__phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid #121212;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 44px rgba(0, 0, 0, 0.16);
}

.lib-webtest__tablet {
  right: -4%;
  top: 29%;
  width: 37%;
  height: 48%;
}

.lib-webtest__phone {
  right: 24%;
  top: 47%;
  width: 19%;
  height: 38%;
  border-radius: 20px;
}

.lib-webtest__tablet div,
.lib-webtest__phone div {
  height: 100%;
  background:
    linear-gradient(180deg, rgba(182, 149, 63, 0.12), transparent 38%),
    repeating-linear-gradient(180deg, #fff 0 14px, #f3f1ec 14px 16px);
}

.lib-webtest__mock--coded {
  display: grid;
  place-items: center;
}

.lib-webtest__browser {
  position: relative;
  width: min(92%, 560px);
  aspect-ratio: 1.28;
  padding: 54px 34px 34px;
  border: 10px solid #111;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 42px 80px rgba(0, 0, 0, 0.16);
}

.lib-webtest__browser > span {
  position: absolute;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #111;
}

.lib-webtest__browser > span:nth-child(1) { left: 26px; }
.lib-webtest__browser > span:nth-child(2) { left: 44px; opacity: 0.5; }
.lib-webtest__browser > span:nth-child(3) { left: 62px; opacity: 0.25; }

.lib-webtest__browserHero {
  height: 46%;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(182, 149, 63, 0.24), transparent 46%),
    linear-gradient(160deg, #161616, #f8f5ef 50%, #fff 100%);
}

.lib-webtest__browserCards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lib-webtest__browserCards i {
  height: 64px;
  border: 1px solid var(--lib-webtest-line);
  border-radius: 8px;
  background: repeating-linear-gradient(180deg, #fff 0 9px, #ece8df 9px 11px);
}

.lib-webtest__phoneArt {
  position: absolute;
  right: 7%;
  bottom: 5%;
  width: 22%;
  aspect-ratio: 0.54;
  border: 9px solid #111;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.lib-webtest__phoneArt i,
.lib-webtest__phoneArt b,
.lib-webtest__phoneArt em {
  position: absolute;
  left: 18%;
  right: 18%;
  height: 10px;
  border-radius: 999px;
  background: #111;
}

.lib-webtest__phoneArt i { top: 24%; }
.lib-webtest__phoneArt b { top: 40%; opacity: 0.45; }
.lib-webtest__phoneArt em { top: 56%; opacity: 0.24; }

.lib-webtest__orbit {
  position: absolute;
  inset: 7% -3% 5% 6%;
  border: 1px solid rgba(182, 149, 63, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.lib-webtest__section {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 116px) 24px;
}

.lib-webtest__heading {
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  align-items: center;
  gap: 28px;
  text-align: center;
}

.lib-webtest__heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 149, 63, 0.8), transparent);
}

.lib-webtest__heading h2,
.lib-webtest__section--reasons h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.42;
  letter-spacing: 0.08em;
}

.lib-webtest__eyebrow,
.lib-webtest__centerLead {
  margin: 0 0 12px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lib-webtest__centerLead {
  color: var(--lib-webtest-muted);
  font-weight: 600;
}

.lib-webtest__concerns,
.lib-webtest__reasons,
.lib-webtest__services,
.lib-webtest__supportGrid {
  display: grid;
  gap: 22px;
}

.lib-webtest__concerns {
  grid-template-columns: repeat(4, 1fr);
}

.lib-webtest__reasons {
  margin-top: 38px;
  grid-template-columns: repeat(3, 1fr);
}

.lib-webtest__services {
  grid-template-columns: repeat(4, 1fr);
}

.lib-webtest__supportGrid {
  grid-template-columns: repeat(6, 1fr);
}

.lib-webtest__concern,
.lib-webtest__reason,
.lib-webtest__service,
.lib-webtest__support,
.lib-webtest__faqItem,
.lib-webtest__flowItem {
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--lib-webtest-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(38, 30, 18, 0.07);
}

.lib-webtest__concern {
  min-height: 220px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lib-webtest__concern span,
.lib-webtest__reason span,
.lib-webtest__flowItem > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.lib-webtest__concern h3,
.lib-webtest__reason h3,
.lib-webtest__service h3,
.lib-webtest__support h3,
.lib-webtest__flowItem h3,
.lib-webtest__faqItem h3 {
  margin: 18px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  font-weight: 900;
}

.lib-webtest__concern p,
.lib-webtest__reason p,
.lib-webtest__service p,
.lib-webtest__support p,
.lib-webtest__flowItem p,
.lib-webtest__faqItem p {
  margin: 14px 0 0;
  color: var(--lib-webtest-muted);
  font-size: 14px;
  line-height: 1.9;
}

.lib-webtest__reason {
  padding: 34px 30px;
  text-align: center;
}

.lib-webtest__reason span {
  margin: 0 auto 24px;
}

.lib-webtest__reason .lib-webtest__icon {
  width: 74px;
  height: 74px;
  color: var(--lib-webtest-gold-dark);
}

.lib-webtest__industry {
  margin: 0 0 clamp(58px, 7vw, 84px);
  padding: 24px 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  list-style: none;
  border: 1px solid rgba(20, 20, 20, 0.07);
  border-radius: var(--lib-webtest-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--lib-webtest-shadow);
}

.lib-webtest__industry li {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 8px 12px;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid rgba(20, 20, 20, 0.08);
}

.lib-webtest__industry li:last-child {
  border-right: 0;
}

.lib-webtest__industry .lib-webtest__icon {
  color: var(--lib-webtest-gold-dark);
}

.lib-webtest__service,
.lib-webtest__support {
  min-height: 190px;
  padding: 28px 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.lib-webtest__service .lib-webtest__icon,
.lib-webtest__support .lib-webtest__icon {
  width: 58px;
  height: 58px;
  color: var(--lib-webtest-gold-dark);
}

.lib-webtest__examples {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.lib-webtest__example {
  margin: 0;
}

.lib-webtest__exampleShot {
  position: relative;
  aspect-ratio: 0.58;
  overflow: hidden;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--lib-webtest-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 45%),
    linear-gradient(135deg, #111 0 24%, #f3efe6 24% 100%);
  box-shadow: 0 15px 28px rgba(38, 30, 18, 0.08);
}

.lib-webtest__exampleShot.is-coded {
  background:
    radial-gradient(circle at 74% 20%, rgba(182, 149, 63, 0.32), transparent 28%),
    repeating-linear-gradient(180deg, #fff 0 28px, #f1eee8 28px 31px);
}

.lib-webtest__exampleShot span {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.lib-webtest__exampleShot strong {
  max-width: 92%;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}

.lib-webtest__exampleShot i {
  display: block;
  width: 62%;
  height: 8px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.18);
}

.lib-webtest__example p {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.lib-webtest__miniCta {
  width: min(100%, 760px);
  margin: 42px auto 0;
  padding: 18px 28px;
  display: flex;
  justify-content: center;
  gap: 36px;
  align-items: baseline;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--lib-webtest-shadow);
  font-weight: 900;
}

.lib-webtest__miniCta strong {
  color: var(--lib-webtest-gold-dark);
  font-family: "Inter", sans-serif;
  font-size: 34px;
}

.lib-webtest__flow {
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  list-style: none;
}

.lib-webtest__flowItem {
  position: relative;
  min-height: 250px;
  padding: 28px 20px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.lib-webtest__flowItem:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 46%;
  right: -18px;
  color: var(--lib-webtest-gold-dark);
  font-size: 26px;
  font-weight: 900;
}

.lib-webtest__flowItem > span {
  background: linear-gradient(135deg, #c6a74f, #98741f);
}

.lib-webtest__flowItem div {
  margin-top: 24px;
  color: #111;
}

.lib-webtest__comparison {
  margin-top: 48px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--lib-webtest-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--lib-webtest-shadow);
}

.lib-webtest__comparison article {
  padding: 28px;
  border-radius: var(--lib-webtest-radius);
  background: #f8f5ef;
}

.lib-webtest__comparison article:last-child {
  background: linear-gradient(135deg, rgba(182, 149, 63, 0.18), #fff);
  border: 1px solid rgba(182, 149, 63, 0.34);
}

.lib-webtest__comparison h3 {
  margin: 0;
  font-size: 22px;
}

.lib-webtest__comparison p {
  margin: 16px 0 0;
  line-height: 1.9;
  color: var(--lib-webtest-muted);
}

.lib-webtest__faq {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.lib-webtest__faqItem {
  padding: 28px 34px;
}

.lib-webtest__faqItem h3,
.lib-webtest__faqItem p {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 18px;
}

.lib-webtest__faqItem h3 span,
.lib-webtest__faqItem p span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--lib-webtest-gold);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.lib-webtest__faqItem p span {
  background: #f1eee8;
  color: #111;
}

.lib-webtest__final {
  padding-top: clamp(70px, 8vw, 118px);
  padding-bottom: clamp(70px, 8vw, 118px);
}

.lib-webtest__final ul {
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.lib-webtest__final li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(38, 30, 18, 0.06);
  font-weight: 800;
}

.lib-webtest__footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 46px 24px 54px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.lib-webtest__footer p {
  margin: 18px 0 0;
  line-height: 1.8;
  font-weight: 700;
}

.lib-webtest__footer nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 30px;
  align-content: center;
  font-weight: 800;
}

.lib-webtest--coded {
  background:
    radial-gradient(circle at 78% 10%, rgba(5, 41, 132, 0.08), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #f7f7f7 44%, #f2f0ea 100%);
}

.lib-webtest--coded .lib-webtest__headerCta,
.lib-webtest--coded .lib-webtest__btn--gold,
.lib-webtest--coded .lib-webtest__flowItem > span {
  background: #052984;
  color: #fff;
}

.lib-webtest--coded .lib-webtest__hero h1 em,
.lib-webtest--coded .lib-webtest__final h2 em,
.lib-webtest--coded .lib-webtest__section--reasons h2 em,
.lib-webtest--coded .lib-webtest__miniCta strong {
  color: #052984;
}

.lib-webtest--coded .lib-webtest__reason .lib-webtest__icon,
.lib-webtest--coded .lib-webtest__service .lib-webtest__icon,
.lib-webtest--coded .lib-webtest__support .lib-webtest__icon,
.lib-webtest--coded .lib-webtest__industry .lib-webtest__icon {
  color: #052984;
}

.lib-webtest--coded .lib-webtest__mock--coded .lib-webtest__browserHero {
  background:
    linear-gradient(115deg, rgba(5, 41, 132, 0.32), transparent 46%),
    linear-gradient(160deg, #0b0b0b, #eaf3ff 52%, #fff 100%);
}

.lib-webtest__partImg,
.lib-webtest__partImg img,
.lib-webtest__assetDevice,
.lib-webtest__assetDevice img,
.lib-webtest__generatedDevice,
.lib-webtest__generatedDevice img,
.lib-webtest__reasonAsset,
.lib-webtest__reasonAsset img,
.lib-webtest__generatedReason,
.lib-webtest__generatedReason img,
.lib-webtest__exampleAsset,
.lib-webtest__exampleAsset img,
.lib-webtest__generatedExample,
.lib-webtest__generatedExample img {
  display: block;
}

.lib-webtest--asset .lib-webtest__mock--asset,
.lib-webtest--generated .lib-webtest__mock--generated {
  min-height: clamp(430px, 42vw, 620px);
  display: grid;
  place-items: center;
  align-self: start;
  padding-top: clamp(28px, 4vw, 58px);
}

.lib-webtest__assetDevice img {
  width: auto;
  max-width: 100%;
  max-height: clamp(430px, 42vw, 620px);
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(42, 33, 18, 0.14));
}

.lib-webtest__generatedDevice img {
  width: auto;
  max-width: 116%;
  max-height: clamp(500px, 46vw, 700px);
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 42px rgba(42, 33, 18, 0.13));
}

.lib-webtest--generated .lib-webtest__hero .lib-webtest__generatedDevice img {
  max-width: 124%;
  max-height: clamp(540px, 50vw, 760px);
}

.lib-webtest--generated .lib-webtest__final .lib-webtest__generatedDevice img {
  max-width: 108%;
}

.lib-webtest__reasonAsset {
  width: min(150px, 52%);
  margin: 0 auto 4px;
}

.lib-webtest__generatedReason {
  width: min(184px, 64%);
  margin: -4px auto 2px;
}

.lib-webtest__reasonAsset img,
.lib-webtest__generatedReason img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.lib-webtest__example--asset {
  display: grid;
  justify-items: center;
}

.lib-webtest__exampleAsset img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 16px 24px rgba(38, 30, 18, 0.08));
}

.lib-webtest__generatedExample img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 18px 28px rgba(38, 30, 18, 0.1));
}

.lib-webtest--asset .lib-webtest__example,
.lib-webtest--generated .lib-webtest__example {
  margin: 0;
}

.lib-webtest--asset .lib-webtest__examples,
.lib-webtest--generated .lib-webtest__examples {
  align-items: start;
}

.lib-webtest--svg {
  background:
    radial-gradient(circle at 86% 8%, rgba(182, 149, 63, 0.08), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #fbfaf7 44%, #f5f0e9 100%);
}

.lib-webtest__mock--svg {
  min-height: clamp(430px, 42vw, 620px);
  display: grid;
  place-items: center;
}

.lib-webtest__svgStage {
  width: min(100%, 700px);
  height: auto;
  overflow: visible;
}

.lib-webtest__premiumIcon {
  width: 92px;
  height: 92px;
  margin: 0 auto 4px;
  color: var(--lib-webtest-gold-dark);
}

.lib-webtest__premiumIcon * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lib-webtest__exampleShot.is-svg {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.4)),
    radial-gradient(circle at 74% 16%, rgba(182, 149, 63, 0.26), transparent 26%),
    linear-gradient(152deg, #131313 0 16%, #fffaf0 16% 100%);
}

.lib-webtest__exampleShot.is-svg::before {
  content: "";
  position: absolute;
  inset: 52px 16px auto;
  height: 104px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0 34%, transparent 34%),
    linear-gradient(180deg, rgba(182, 149, 63, 0.3), rgba(255, 255, 255, 0.72));
  opacity: 0.72;
}

.lib-webtest--artboard {
  background: #f4efe7;
}

.lib-webtest__artDesktop {
  width: min(100%, 941px);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 24px 70px rgba(40, 31, 19, 0.08);
}

.lib-webtest__artSlice {
  position: relative;
  width: 100%;
}

.lib-webtest__artSlice picture,
.lib-webtest__artSlice img {
  display: block;
  width: 100%;
  height: auto;
}

.lib-webtest__anchorMarker {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.lib-webtest__anchorMarker.is-price {
  top: 30%;
}

.lib-webtest__anchorMarker.is-examples {
  top: 44%;
}

.lib-webtest__hotspot {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 26px;
  border-radius: 999px;
  color: transparent;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.lib-webtest__hotspot:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
}

.lib-webtest__hotspot:hover {
  background: rgba(182, 149, 63, 0.08);
}

.lib-webtest__hotspot--nav {
  top: 2.45%;
  height: 2.4%;
  padding: 0 8px;
  font-size: 12px;
}

.lib-webtest__hotspot--nav.is-service { left: 36%; width: 7%; }
.lib-webtest__hotspot--nav.is-flow { left: 45%; width: 9%; }
.lib-webtest__hotspot--nav.is-examples { left: 56%; width: 8.8%; }
.lib-webtest__hotspot--nav.is-price { left: 67.2%; width: 5%; }
.lib-webtest__hotspot--nav.is-faq { left: 75.4%; width: 9.6%; }

.lib-webtest__hotspot--cta {
  padding: 0 18px;
  font-size: 14px;
}

.lib-webtest__hotspot--cta span {
  display: none;
}

.lib-webtest__hotspot--cta.is-header {
  top: 1.25%;
  left: 80.6%;
  width: 16.8%;
  height: 3.5%;
  font-size: 12px;
}

.lib-webtest__hotspot--cta.is-hero-primary {
  top: 38.15%;
  left: 4.7%;
  width: 27.5%;
  height: 4.15%;
}

.lib-webtest__hotspot--cta.is-hero-secondary {
  top: 38.45%;
  left: 33.8%;
  width: 23.6%;
  height: 3.85%;
}

.lib-webtest__hotspot--cta.is-final-primary {
  top: 72.5%;
  left: 5.2%;
  width: 41.8%;
  height: 5.1%;
  color: #fff;
}

.lib-webtest__hotspot--cta.is-final-secondary {
  top: 72.5%;
  left: 49.2%;
  width: 40.8%;
  height: 5.1%;
}

.lib-webtest__hotspot--footer {
  bottom: 8.2%;
  height: 2.2%;
  padding: 0 6px;
  font-size: 12px;
}

.lib-webtest__hotspot--footer.is-footer-service { left: 43.8%; width: 7%; }
.lib-webtest__hotspot--footer.is-footer-examples { left: 55.4%; width: 8.8%; }
.lib-webtest__hotspot--footer.is-footer-flow { left: 65.6%; width: 9.8%; }
.lib-webtest__hotspot--footer.is-footer-faq { left: 80.4%; width: 10.8%; }
.lib-webtest__hotspot--footer.is-footer-about { left: 43.8%; bottom: 5.45%; width: 7.4%; }
.lib-webtest__hotspot--footer.is-footer-contact { left: 55.4%; bottom: 5.45%; width: 8.6%; }
.lib-webtest__hotspot--footer.is-footer-privacy { left: 69.6%; bottom: 5.45%; width: 13.4%; }

.lib-webtest a.lib-webtest__hotspot,
.lib-webtest a.lib-webtest__hotspot:hover {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lib-webtest__artMobile {
  display: none;
}

@media (max-width: 1100px) {
  .lib-webtest--generated .lib-webtest__hero .lib-webtest__generatedDevice img,
  .lib-webtest--generated .lib-webtest__final .lib-webtest__generatedDevice img {
    max-width: 100%;
    max-height: 520px;
  }
}

@media (max-width: 1023px) {
  .lib-webtest__header {
    gap: 18px;
  }

  .lib-webtest__nav {
    display: none;
  }

  .lib-webtest__hero,
  .lib-webtest__final {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lib-webtest__mock {
    min-height: 430px;
  }

  .lib-webtest__mock--asset,
  .lib-webtest__mock--generated,
  .lib-webtest__mock--svg {
    min-height: 380px;
  }

  .lib-webtest__assetDevice img,
  .lib-webtest__generatedDevice img {
    max-height: 520px;
  }

  .lib-webtest--generated .lib-webtest__hero .lib-webtest__generatedDevice img,
  .lib-webtest--generated .lib-webtest__final .lib-webtest__generatedDevice img {
    max-width: 100%;
    max-height: 520px;
  }

  .lib-webtest__laptop {
    right: 0;
  }

  .lib-webtest__tablet {
    right: 0;
  }

  .lib-webtest__concerns,
  .lib-webtest__services {
    grid-template-columns: repeat(2, 1fr);
  }

  .lib-webtest__reasons,
  .lib-webtest__supportGrid,
  .lib-webtest__examples {
    grid-template-columns: repeat(3, 1fr);
  }

  .lib-webtest__industry {
    grid-template-columns: repeat(3, 1fr);
  }

  .lib-webtest__industry li:nth-child(3n) {
    border-right: 0;
  }

  .lib-webtest__flow {
    grid-template-columns: 1fr;
  }

  .lib-webtest__flowItem {
    min-height: auto;
  }

  .lib-webtest__flowItem:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -22px;
    transform: translateX(50%);
  }
}

@media (max-width: 767px) {
  .lib-webtest__header {
    position: relative;
    min-height: auto;
    padding: 14px 18px;
  }

  .lib-webtest__logo img {
    width: 156px;
  }

  .lib-webtest__headerCta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .lib-webtest__headerCta span {
    width: 20px;
    height: 20px;
  }

  .lib-webtest__hero,
  .lib-webtest__section,
  .lib-webtest__final,
  .lib-webtest__footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lib-webtest__hero {
    padding-top: 44px;
  }

  .lib-webtest__hero h1,
  .lib-webtest__final h2 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.28;
  }

  .lib-webtest__badge {
    margin-bottom: 24px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .lib-webtest__priceCard {
    min-width: 0;
    width: 100%;
    padding: 16px 18px;
    gap: 12px;
  }

  .lib-webtest__priceCard strong {
    font-size: 42px;
  }

  .lib-webtest__actions,
  .lib-webtest__final ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lib-webtest__btn {
    width: 100%;
  }

  .lib-webtest__mock {
    min-height: 300px;
  }

  .lib-webtest__mock--asset,
  .lib-webtest__mock--generated,
  .lib-webtest__mock--svg {
    min-height: 270px;
  }

  .lib-webtest__assetDevice img,
  .lib-webtest__generatedDevice img {
    max-height: 320px;
  }

  .lib-webtest--generated .lib-webtest__hero .lib-webtest__generatedDevice img,
  .lib-webtest--generated .lib-webtest__final .lib-webtest__generatedDevice img {
    max-width: 100%;
    max-height: 320px;
  }

  .lib-webtest__premiumIcon {
    width: 76px;
    height: 76px;
  }

  .lib-webtest__laptop {
    left: 0;
    right: 0;
  }

  .lib-webtest__tablet {
    right: 0;
    width: 38%;
  }

  .lib-webtest__phone {
    right: 18%;
    width: 21%;
  }

  .lib-webtest__browser {
    width: 100%;
    padding: 44px 20px 22px;
  }

  .lib-webtest__phoneArt {
    right: 2%;
    width: 25%;
  }

  .lib-webtest__heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lib-webtest__heading span {
    width: 54px;
    margin: 0 auto;
  }

  .lib-webtest__heading h2,
  .lib-webtest__section--reasons h2 {
    font-size: 25px;
    letter-spacing: 0.04em;
  }

  .lib-webtest__concerns,
  .lib-webtest__reasons,
  .lib-webtest__services,
  .lib-webtest__supportGrid,
  .lib-webtest__examples,
  .lib-webtest__industry,
  .lib-webtest__comparison,
  .lib-webtest__footer {
    grid-template-columns: 1fr;
  }

  .lib-webtest__industry {
    padding: 10px 16px;
  }

  .lib-webtest__industry li {
    grid-template-columns: 42px 1fr;
    justify-items: start;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  }

  .lib-webtest__industry li:last-child {
    border-bottom: 0;
  }

  .lib-webtest__exampleShot {
    aspect-ratio: 1.75;
  }

  .lib-webtest__example--asset {
    max-width: 235px;
    margin-inline: auto;
  }

  .lib-webtest__generatedReason {
    width: min(172px, 58%);
  }

  .lib-webtest__miniCta {
    border-radius: var(--lib-webtest-radius);
    display: grid;
    gap: 8px;
    text-align: center;
  }

  .lib-webtest__faqItem {
    padding: 22px 18px;
  }

  .lib-webtest__faqItem h3,
  .lib-webtest__faqItem p {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .lib-webtest__faqItem h3 span,
  .lib-webtest__faqItem p span {
    width: 30px;
    height: 30px;
  }

  .lib-webtest__footer nav {
    grid-template-columns: 1fr 1fr;
  }

  .lib-webtest--artboard .lib-webtest__artDesktop {
    display: none;
  }

  .lib-webtest--artboard .lib-webtest__artMobile {
    display: block;
  }
}

/* =========================================================
   /test3 generated assets refinement
   ========================================================= */

.lib-webtest {
  max-width: 100%;
  overflow-x: hidden;
}

.lib-webtest--generated {
  background:
    radial-gradient(circle at 78% 12%, rgba(182, 149, 63, 0.09), transparent 24rem),
    radial-gradient(ellipse at 86% 42%, rgba(255, 255, 255, 0.86), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #fffdfa 36%, #f5efe5 100%);
}

.lib-webtest--generated .lib-webtest__header {
  min-height: 76px;
  padding-block: 12px;
}

.lib-webtest--generated .lib-webtest__logo img {
  width: clamp(156px, 13vw, 202px);
}

.lib-webtest--generated .lib-webtest__hero {
  min-height: calc(100svh - 76px);
  padding-top: clamp(24px, 3.4vw, 48px);
  padding-bottom: clamp(42px, 4.6vw, 66px);
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(26px, 3.2vw, 46px);
}

.lib-webtest--generated .lib-webtest__hero h1 {
  max-width: 10.4em;
  font-size: clamp(48px, 4.6vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.lib-webtest__mobileBreak {
  display: inline;
  font: inherit;
}

.lib-webtest--generated .lib-webtest__badge {
  margin-bottom: clamp(22px, 2.8vw, 34px);
  background: rgba(255, 255, 255, 0.88);
}

.lib-webtest--generated .lib-webtest__lead {
  margin-top: 18px;
  max-width: 35em;
}

.lib-webtest--generated .lib-webtest__priceCard {
  margin-top: 22px;
  min-width: min(100%, 370px);
  padding: 16px 24px;
}

.lib-webtest--generated .lib-webtest__actions {
  margin-top: 22px;
}

.lib-webtest--generated .lib-webtest__btn {
  min-height: 60px;
  min-width: 232px;
}

.lib-webtest--generated .lib-webtest__btn--gold,
.lib-webtest--generated .lib-webtest__headerCta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(135deg, #d0b153 0%, #b68e2f 100%);
  box-shadow:
    0 16px 30px rgba(143, 105, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lib-webtest--generated .lib-webtest__btn--gold::after,
.lib-webtest--generated .lib-webtest__headerCta::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 34%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0;
  transition: transform 420ms ease, opacity 240ms ease;
}

.lib-webtest--generated .lib-webtest__btn--gold:hover::after,
.lib-webtest--generated .lib-webtest__headerCta:hover::after {
  transform: translateX(420%) skewX(-18deg);
  opacity: 1;
}

.lib-webtest--generated .lib-webtest__mock--generated {
  min-height: clamp(390px, 39vw, 570px);
  align-self: center;
  padding-top: 0;
  isolation: isolate;
}

.lib-webtest--generated .lib-webtest__mock--generated::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 13% -2% 4% 6%;
  border-radius: 54% 46% 46% 54%;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.92), transparent 22%),
    linear-gradient(145deg, rgba(245, 238, 223, 0.9), rgba(255, 255, 255, 0.15));
  box-shadow: inset 0 0 0 1px rgba(182, 149, 63, 0.08);
}

.lib-webtest--generated .lib-webtest__mock--generated::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 12%;
  right: 8%;
  bottom: 6%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(45, 35, 18, 0.18), transparent 68%);
  filter: blur(10px);
}

.lib-webtest--generated .lib-webtest__generatedDevice {
  width: min(112%, 730px);
  max-width: 100%;
}

.lib-webtest--generated .lib-webtest__generatedDevice img {
  width: 100%;
  max-width: 100%;
  max-height: clamp(420px, 43vw, 620px);
  object-fit: contain;
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 34px 44px rgba(42, 33, 18, 0.13))
    drop-shadow(0 7px 12px rgba(42, 33, 18, 0.08));
}

.lib-webtest--generated .lib-webtest__final .lib-webtest__mock--generated {
  min-height: clamp(320px, 33vw, 480px);
}

.lib-webtest--generated .lib-webtest__final .lib-webtest__generatedDevice {
  width: min(104%, 620px);
}

.lib-webtest--generated .lib-webtest__final .lib-webtest__generatedDevice img {
  max-height: clamp(320px, 36vw, 500px);
}

.lib-webtest--generated .lib-webtest__section {
  padding-top: clamp(74px, 7.2vw, 108px);
  padding-bottom: clamp(74px, 7.2vw, 108px);
}

.lib-webtest--generated .lib-webtest__concern,
.lib-webtest--generated .lib-webtest__reason,
.lib-webtest--generated .lib-webtest__service,
.lib-webtest--generated .lib-webtest__support,
.lib-webtest--generated .lib-webtest__flowItem,
.lib-webtest--generated .lib-webtest__faqItem {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 246, 0.86)),
    radial-gradient(circle at 88% 12%, rgba(182, 149, 63, 0.11), transparent 32%);
  box-shadow:
    0 18px 34px rgba(38, 30, 18, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lib-webtest--generated .lib-webtest__concern {
  position: relative;
  overflow: hidden;
}

.lib-webtest--generated .lib-webtest__concern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d0b153, #111);
  opacity: 0.88;
}

.lib-webtest--generated .lib-webtest__reason {
  position: relative;
  min-height: 410px;
  padding: 28px 30px 32px;
  display: grid;
  align-content: start;
}

.lib-webtest--generated .lib-webtest__reason span {
  margin-bottom: 18px;
}

.lib-webtest--generated .lib-webtest__generatedReason {
  width: min(178px, 66%);
  min-height: 136px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 244, 236, 0.74));
}

.lib-webtest--generated .lib-webtest__generatedReason img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.lib-webtest--generated .lib-webtest__industry {
  background: rgba(255, 255, 255, 0.94);
}

.lib-webtest--generated .lib-webtest__examples {
  gap: 18px;
}

.lib-webtest--generated .lib-webtest__example--asset {
  padding: 12px 12px 16px;
  display: grid;
  justify-items: center;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 32px rgba(38, 30, 18, 0.08);
}

.lib-webtest--generated .lib-webtest__generatedExample {
  width: 100%;
  aspect-ratio: 308 / 829;
  overflow: hidden;
  border-radius: 10px;
  background: #f7f3eb;
}

.lib-webtest--generated .lib-webtest__generatedExample img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  filter: none;
}

.lib-webtest--generated .lib-webtest__example p {
  margin-top: 13px;
  font-size: 14px;
}

.lib-webtest--generated .lib-webtest__example small {
  display: block;
  margin-top: 4px;
  color: var(--lib-webtest-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.lib-webtest--generated .lib-webtest__comparison {
  position: relative;
  gap: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 240, 0.86)),
    radial-gradient(circle at 50% 50%, rgba(182, 149, 63, 0.12), transparent 28%);
}

.lib-webtest--generated .lib-webtest__comparison::before {
  content: "契約前に見える化";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  padding: 9px 14px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.lib-webtest--generated .lib-webtest__comparison article {
  min-height: 150px;
}

.lib-webtest--generated .lib-webtest__miniCta {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 243, 0.92));
}

.lib-webtest--generated .lib-webtest__final {
  align-items: center;
}

@media (max-width: 1023px) {
  .lib-webtest--generated .lib-webtest__hero,
  .lib-webtest--generated .lib-webtest__final {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lib-webtest--generated .lib-webtest__heroCopy {
    max-width: 680px;
  }

  .lib-webtest--generated .lib-webtest__mock--generated {
    min-height: clamp(330px, 58vw, 510px);
    justify-self: center;
    width: min(100%, 680px);
  }

  .lib-webtest--generated .lib-webtest__generatedDevice img {
    max-height: clamp(330px, 58vw, 510px);
  }

  .lib-webtest--generated .lib-webtest__reasons,
  .lib-webtest--generated .lib-webtest__examples {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lib-webtest--generated .lib-webtest__supportGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .lib-webtest--generated .lib-webtest__header {
    position: relative;
    min-height: 72px;
    padding: 12px 18px;
    gap: 12px;
  }

  .lib-webtest--generated .lib-webtest__logo img {
    width: min(150px, 47vw);
  }

  .lib-webtest--generated .lib-webtest__headerCta {
    min-height: 38px;
    max-width: 118px;
    padding: 0 9px 0 12px;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .lib-webtest--generated .lib-webtest__headerCta span {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .lib-webtest--generated .lib-webtest__hero,
  .lib-webtest--generated .lib-webtest__section,
  .lib-webtest--generated .lib-webtest__final,
  .lib-webtest--generated .lib-webtest__footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lib-webtest--generated .lib-webtest__hero {
    padding-top: 38px;
    padding-bottom: 54px;
    gap: 28px;
  }

  .lib-webtest--generated .lib-webtest__hero h1,
  .lib-webtest--generated .lib-webtest__final h2 {
    max-width: 100%;
    font-size: clamp(40px, 12.2vw, 48px);
    line-height: 1.18;
    letter-spacing: -0.06em;
    overflow-wrap: normal;
  }

  .lib-webtest--generated .lib-webtest__hero h1 {
    word-break: keep-all;
  }

  .lib-webtest--generated .lib-webtest__final h2 {
    font-size: clamp(32px, 9.8vw, 40px);
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .lib-webtest--generated .lib-webtest__mobileBreak {
    display: block;
  }

  .lib-webtest--generated .lib-webtest__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
  }

  .lib-webtest--generated .lib-webtest__priceCard {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    padding: 16px 18px;
    gap: 10px;
  }

  .lib-webtest--generated .lib-webtest__priceCard span {
    white-space: nowrap;
  }

  .lib-webtest--generated .lib-webtest__priceCard strong {
    font-size: clamp(38px, 12vw, 48px);
  }

  .lib-webtest--generated .lib-webtest__actions {
    gap: 12px;
  }

  .lib-webtest--generated .lib-webtest__btn {
    min-width: 0;
    min-height: 62px;
    padding-inline: 18px;
  }

  .lib-webtest--generated .lib-webtest__mock--generated {
    min-height: 290px;
    width: 100%;
  }

  .lib-webtest--generated .lib-webtest__mock--generated::before {
    inset: 8% -10% 0 -8%;
  }

  .lib-webtest--generated .lib-webtest__generatedDevice {
    width: min(100%, 390px);
  }

  .lib-webtest--generated .lib-webtest__generatedDevice img {
    max-height: 300px;
  }

  .lib-webtest--generated .lib-webtest__concerns,
  .lib-webtest--generated .lib-webtest__reasons,
  .lib-webtest--generated .lib-webtest__services,
  .lib-webtest--generated .lib-webtest__supportGrid,
  .lib-webtest--generated .lib-webtest__examples,
  .lib-webtest--generated .lib-webtest__industry,
  .lib-webtest--generated .lib-webtest__comparison,
  .lib-webtest--generated .lib-webtest__footer {
    grid-template-columns: 1fr;
  }

  .lib-webtest--generated .lib-webtest__reason {
    min-height: auto;
  }

  .lib-webtest--generated .lib-webtest__generatedReason {
    width: min(170px, 58%);
    min-height: 126px;
  }

  .lib-webtest--generated .lib-webtest__example--asset {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .lib-webtest--generated .lib-webtest__comparison {
    gap: 18px;
  }

  .lib-webtest--generated .lib-webtest__comparison::before {
    position: static;
    grid-column: 1;
    justify-self: center;
    transform: none;
    order: 2;
  }

  .lib-webtest--generated .lib-webtest__comparison article:first-child {
    order: 1;
  }

  .lib-webtest--generated .lib-webtest__comparison article:last-child {
    order: 3;
  }

  .lib-webtest--generated .lib-webtest__final .lib-webtest__mock--generated {
    min-height: 260px;
  }

  .lib-webtest--generated .lib-webtest__final .lib-webtest__priceCard {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lib-webtest--generated .lib-webtest__final .lib-webtest__priceCard strong {
    font-size: clamp(42px, 12vw, 50px);
  }

  .lib-webtest--generated .lib-webtest__final .lib-webtest__generatedDevice {
    width: min(100%, 360px);
  }
}

/* =========================================================
   /test6 productized service LP
   ========================================================= */

.lib-webtest--product {
  --lib-product-ink: #070707;
  --lib-product-muted: #5e626d;
  --lib-product-line: rgba(7, 7, 7, 0.12);
  --lib-product-paper: #ffffff;
  --lib-product-soft: #f3f5f9;
  --lib-product-blue: #052984;
  --lib-product-blue-2: #0b4bc2;
  --lib-product-gold: #b6953f;
  --lib-product-radius: 10px;
  --lib-product-shadow: 0 26px 70px rgba(4, 22, 70, 0.13);
  background:
    radial-gradient(circle at 88% 6%, rgba(5, 41, 132, 0.13), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f6f7fa 46%, #ffffff 100%);
  color: var(--lib-product-ink);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

body:has(.lib-webtest--product) .lib-scroll-progress,
body:has(.lib-webtest--product) .lib-cursor.is-ready {
  display: none;
}

.lib-product__header,
.lib-productHero,
.lib-productStats,
.lib-productSection,
.lib-productFinal,
.lib-productFooter {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.lib-product__header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 82px;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--lib-product-line);
  backdrop-filter: blur(18px);
}

.lib-product__header .lib-webtest__logo img {
  width: clamp(158px, 12vw, 202px);
}

.lib-product__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.lib-product__nav a {
  position: relative;
  padding-block: 8px;
}

.lib-product__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--lib-product-blue);
  transition: transform 220ms ease;
}

.lib-product__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lib-product__headerCta,
.lib-product__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.lib-product__headerCta {
  padding-inline: 22px 18px;
  background: var(--lib-product-blue);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(5, 41, 132, 0.22);
}

.lib-webtest--product .lib-product__headerCta,
.lib-webtest--product .lib-product__btn--primary,
.lib-webtest--product .lib-product__headerCta span,
.lib-webtest--product .lib-product__btn--primary span {
  color: #ffffff;
}

.lib-product__headerCta span,
.lib-product__btn b {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--lib-product-blue);
  font-size: 13px;
}

.lib-productHero {
  min-height: calc(100svh - 82px);
  padding: clamp(34px, 4.4vw, 64px) 28px clamp(34px, 4.2vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
}

.lib-product__eyebrow,
.lib-product__sectionHead p,
.lib-productPrice > p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lib-product-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.lib-product__eyebrow::before,
.lib-product__sectionHead p::before,
.lib-productPrice > p::before {
  content: "";
  width: 3px;
  height: 22px;
  background: var(--lib-product-blue);
}

.lib-productHero h1,
.lib-productFinal h2 {
  margin: 22px 0 0;
  max-width: 9.4em;
  font-size: clamp(54px, 5.35vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.lib-productHero h1 em,
.lib-productFinal h2 em {
  color: var(--lib-product-blue);
  font-style: normal;
}

.lib-productHero__nowrap {
  display: inline-block;
  white-space: nowrap;
}

.lib-productHero__lead,
.lib-productFinal p,
.lib-product__sectionHead h2 + p {
  color: var(--lib-product-muted);
}

.lib-productHero__lead {
  max-width: 40em;
  margin: 20px 0 0;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.85;
}

.lib-productHero__offer {
  width: min(100%, 520px);
  margin-top: 22px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: baseline;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(5, 41, 132, 0.14);
  border-left: 6px solid var(--lib-product-blue);
  border-radius: var(--lib-product-radius);
  box-shadow: var(--lib-product-shadow);
}

.lib-productHero__offer span {
  font-size: 13px;
  font-weight: 900;
}

.lib-productHero__offer strong {
  font-size: clamp(44px, 3.9vw, 60px);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.lib-productHero__offer b {
  font-size: 22px;
}

.lib-productHero__offer small {
  justify-self: end;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(182, 149, 63, 0.14);
  color: #70571c;
  font-weight: 900;
  white-space: nowrap;
}

.lib-product__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lib-product__btn {
  min-width: 220px;
  padding-inline: 25px 17px;
}

.lib-product__btn--primary {
  background: var(--lib-product-blue);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(5, 41, 132, 0.24);
}

.lib-product__btn--ghost {
  background: #ffffff;
  border: 1px solid rgba(5, 41, 132, 0.22);
  color: var(--lib-product-blue);
}

.lib-product__btn--ghost b {
  background: var(--lib-product-blue);
  color: #ffffff;
}

.lib-product__btn:hover,
.lib-product__headerCta:hover {
  transform: translateY(-1px);
}

.lib-productKit {
  position: relative;
  margin: 0;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff var(--lib-product-art) center / cover no-repeat;
  box-shadow: 0 30px 80px rgba(4, 22, 70, 0.14);
  isolation: isolate;
}

.lib-productKit::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 8% -8% 8%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(5, 41, 132, 0.18), transparent 68%);
  filter: blur(16px);
}

.lib-productStats {
  margin-top: -12px;
  padding: 0 28px 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
}

.lib-productStats li {
  min-height: 118px;
  padding: 22px 24px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--lib-product-line);
  border-right: 0;
}

.lib-productStats li:first-child { border-radius: 10px 0 0 10px; }
.lib-productStats li:last-child { border-right: 1px solid var(--lib-product-line); border-radius: 0 10px 10px 0; }

.lib-productStats strong {
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.lib-productStats span {
  color: var(--lib-product-muted);
  font-size: 13px;
  font-weight: 800;
}

.lib-productSection {
  padding: clamp(80px, 8vw, 132px) 28px;
}

.lib-product__sectionHead {
  max-width: 850px;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.lib-product__sectionHead h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.1vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.lib-product__pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lib-product__pain {
  min-height: 280px;
  padding: 28px;
  display: grid;
  align-content: space-between;
  background: #ffffff;
  border: 1px solid var(--lib-product-line);
  border-radius: var(--lib-product-radius);
  box-shadow: 0 18px 44px rgba(4, 22, 70, 0.06);
}

.lib-product__pain span {
  color: var(--lib-product-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.lib-product__pain h3 {
  margin: 28px 0 0;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.lib-product__pain p {
  margin: 22px 0 0;
  color: var(--lib-product-muted);
  font-weight: 700;
  line-height: 1.85;
}

.lib-productSection--compare {
  width: 100%;
  max-width: none;
  padding-inline: max(28px, calc((100vw - 1240px) / 2 + 28px));
  background: #080808;
  color: #ffffff;
}

.lib-product__sectionHead.is-invert p {
  color: #8fb0ff;
}

.lib-product__sectionHead.is-invert p::before {
  background: #8fb0ff;
}

.lib-product__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.lib-product__compareVisual {
  grid-column: 1 / -1;
  margin: 0 0 10px;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: #080808 var(--lib-product-art) center / cover no-repeat;
  border: 1px solid rgba(143, 176, 255, 0.26);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(5, 41, 132, 0.22);
}

.lib-product__compareCard {
  padding: clamp(28px, 3.2vw, 48px);
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.lib-product__compareCard.is-libero {
  background:
    linear-gradient(135deg, rgba(5, 41, 132, 0.94), rgba(7, 7, 7, 0.96)),
    #052984;
  border-color: rgba(143, 176, 255, 0.45);
  box-shadow: 0 28px 70px rgba(5, 41, 132, 0.32);
}

.lib-product__compareCard h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 38px);
  letter-spacing: -0.04em;
}

.lib-product__compareCard ol {
  margin: 32px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.lib-product__compareCard li {
  min-height: 52px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.lib-product__compareCard li span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #111;
  font-size: 12px;
}

.lib-product__compareCard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.8;
}

.lib-productDeliverables {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 26px;
  align-items: stretch;
}

.lib-productDeliverables__visual {
  margin: 0;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: #ffffff var(--lib-product-art) center / cover no-repeat;
  border: 1px solid rgba(5, 41, 132, 0.12);
  border-radius: 18px;
  box-shadow: var(--lib-product-shadow);
}

.lib-productDeliverables__board {
  padding: clamp(22px, 2.8vw, 38px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    var(--lib-product-paper);
  border: 1px solid rgba(5, 41, 132, 0.12);
  border-radius: 16px;
  box-shadow: var(--lib-product-shadow);
}

.lib-productDeliverables__board article {
  min-height: 150px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  background: #ffffff;
  border: 1px solid var(--lib-product-line);
  border-radius: 10px;
}

.lib-productDeliverables__board span {
  width: fit-content;
  padding: 6px 9px;
  background: var(--lib-product-blue);
  color: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.lib-productDeliverables__board h3 {
  margin: 26px 0 0;
  font-size: 20px;
  line-height: 1.4;
}

.lib-productDeliverables__board p {
  margin: 14px 0 0;
  color: var(--lib-product-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.lib-productDeliverables__note {
  grid-column: 1 / -1;
  padding: 34px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(150deg, rgba(5, 41, 132, 0.98), rgba(4, 18, 57, 0.96)),
    var(--lib-product-blue);
  border-radius: 16px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.lib-productDeliverables__note::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.lib-productDeliverables__note span {
  width: fit-content;
  padding: 8px 12px;
  background: #ffffff;
  color: var(--lib-product-blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.lib-productDeliverables__note h3 {
  margin: 28px 0 0;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.lib-productDeliverables__note p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.9;
}

.lib-productCases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lib-productCase {
  padding: 16px 16px 22px;
  background: #ffffff;
  border: 1px solid var(--lib-product-line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(4, 22, 70, 0.06);
}

.lib-productCase__screen {
  margin: 0;
  aspect-ratio: 1448 / 1086;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f7fb var(--lib-product-art) center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(5, 41, 132, 0.08);
}

.lib-productCase p {
  margin: 18px 0 0;
  color: var(--lib-product-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lib-productCase h3 {
  margin: 8px 0 0;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.lib-productSection--scope {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: stretch;
}

.lib-productPrice {
  padding: clamp(30px, 3.4vw, 52px);
  display: grid;
  align-content: center;
  background: #0a0a0a;
  color: #ffffff;
  border-radius: 16px;
}

.lib-productPrice h2 {
  margin: 26px 0 0;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.lib-productPrice h2 span {
  color: #ffffff;
}

.lib-productPrice strong {
  margin-top: 24px;
  font-size: clamp(20px, 2vw, 30px);
}

.lib-productPrice > p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.9;
}

.lib-productScope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lib-productScope__card {
  padding: clamp(26px, 3vw, 42px);
  background: #ffffff;
  border: 1px solid var(--lib-product-line);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(4, 22, 70, 0.06);
}

.lib-productScope__card h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.lib-productScope__card ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.lib-productScope__card li {
  position: relative;
  padding-left: 22px;
  color: var(--lib-product-muted);
  font-weight: 800;
}

.lib-productScope__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  background: var(--lib-product-blue);
  border-radius: 50%;
}

.lib-productFlow {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
}

.lib-productFlow li {
  position: relative;
  min-height: 250px;
  padding: 30px 22px;
  background: #ffffff;
  border: 1px solid var(--lib-product-line);
  border-right: 0;
}

.lib-productFlow li:first-child { border-radius: 14px 0 0 14px; }
.lib-productFlow li:last-child { border-right: 1px solid var(--lib-product-line); border-radius: 0 14px 14px 0; }

.lib-productFlow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 34px;
  right: -13px;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lib-product-blue);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.lib-productFlow span {
  color: var(--lib-product-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.lib-productFlow h3 {
  margin: 34px 0 0;
  font-size: 22px;
  line-height: 1.35;
}

.lib-productFlow p {
  margin: 18px 0 0;
  color: var(--lib-product-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.lib-productFaq {
  display: grid;
  gap: 14px;
}

.lib-productFaq__item {
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--lib-product-line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(4, 22, 70, 0.05);
}

.lib-productFaq__item summary {
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.lib-productFaq__item summary::-webkit-details-marker {
  display: none;
}

.lib-productFaq__item summary span,
.lib-productFaq__item p span {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lib-product-blue);
  color: #ffffff;
  font-size: 13px;
}

.lib-productFaq__item p {
  margin: 0;
  padding: 0 28px 26px 74px;
  color: var(--lib-product-muted);
  font-weight: 700;
  line-height: 1.85;
}

.lib-productFaq__item p span {
  margin-left: -46px;
  margin-right: 16px;
  background: #eceff5;
  color: #111;
}

.lib-productFinal {
  padding: clamp(72px, 8vw, 126px) 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.lib-productFinal p:not(.lib-product__eyebrow) {
  max-width: 42em;
  margin: 24px 0 0;
  font-weight: 700;
  line-height: 1.95;
}

.lib-productFooter {
  padding: 44px 28px 64px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  gap: 28px;
  border-top: 1px solid var(--lib-product-line);
}

.lib-productFooter .lib-webtest__logo img {
  width: 176px;
}

.lib-productFooter p {
  margin: 16px 0 0;
  color: var(--lib-product-muted);
  font-weight: 800;
  line-height: 1.8;
}

.lib-productFooter nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 28px;
  align-content: start;
  font-weight: 900;
}

@media (prefers-reduced-motion: no-preference) {
  .lib-webtest--product .lib-productHero__copy,
  .lib-webtest--product .lib-productKit,
  .lib-webtest--product .lib-productStats,
  .lib-webtest--product .lib-product__pain,
  .lib-webtest--product .lib-productCase {
    animation: lib-product-rise 780ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }

  .lib-webtest--product .lib-productKit { animation-delay: 120ms; }
  .lib-webtest--product .lib-productStats { animation-delay: 220ms; }
}

@keyframes lib-product-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .lib-product__header {
    grid-template-columns: auto auto;
  }

  .lib-product__nav {
    display: none;
  }

  .lib-productHero,
  .lib-productFinal,
  .lib-productSection--scope {
    grid-template-columns: 1fr;
  }

  .lib-productHero {
    min-height: auto;
  }

  .lib-productKit {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .lib-productStats,
  .lib-product__pains,
  .lib-product__compare,
  .lib-productDeliverables,
  .lib-productCases,
  .lib-productScope {
    grid-template-columns: 1fr 1fr;
  }

  .lib-productDeliverables__note {
    min-height: 340px;
  }

  .lib-productFlow {
    grid-template-columns: 1fr;
  }

  .lib-productFlow li,
  .lib-productFlow li:first-child,
  .lib-productFlow li:last-child {
    min-height: auto;
    border: 1px solid var(--lib-product-line);
    border-radius: 12px;
  }

  .lib-productFlow li:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 28px;
    bottom: -13px;
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  .lib-product__header {
    min-height: 72px;
    padding: 12px 18px;
    gap: 14px;
  }

  .lib-product__header .lib-webtest__logo img {
    width: min(148px, 46vw);
  }

  .lib-product__headerCta {
    min-height: 38px;
    padding-inline: 13px 9px;
    gap: 8px;
    font-size: 11px;
  }

  .lib-product__headerCta span {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .lib-productHero,
  .lib-productSection,
  .lib-productFinal,
  .lib-productFooter {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lib-productHero {
    padding-top: 42px;
    gap: 34px;
  }

  .lib-productHero h1,
  .lib-productFinal h2 {
    max-width: 100%;
    font-size: clamp(42px, 12.6vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.065em;
  }

  .lib-productHero__lead {
    font-size: 15px;
  }

  .lib-productHero__offer {
    grid-template-columns: 1fr auto auto;
    padding: 17px;
  }

  .lib-productHero__offer span,
  .lib-productHero__offer small {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .lib-productHero__offer strong {
    font-size: clamp(42px, 13vw, 54px);
  }

  .lib-product__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lib-product__btn {
    min-width: 0;
    min-height: 58px;
  }

  .lib-productKit {
    min-height: 0;
    transform: none;
    border-radius: 14px;
  }

  .lib-productStats,
  .lib-product__pains,
  .lib-product__compare,
  .lib-productDeliverables,
  .lib-productDeliverables__board,
  .lib-productCases,
  .lib-productScope,
  .lib-productFooter,
  .lib-productFooter nav {
    grid-template-columns: 1fr;
  }

  .lib-productStats {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 48px;
  }

  .lib-productStats li,
  .lib-productStats li:first-child,
  .lib-productStats li:last-child {
    border: 1px solid var(--lib-product-line);
    border-radius: 10px;
  }

  .lib-product__sectionHead h2 {
    font-size: clamp(30px, 9.2vw, 42px);
  }

  .lib-product__pain {
    min-height: auto;
  }

  .lib-productSection--compare {
    padding-inline: 18px;
  }

  .lib-productDeliverables__board article {
    min-height: auto;
  }

  .lib-productDeliverables__note {
    min-height: auto;
  }

  .lib-productCase__screen {
    min-height: 0;
  }

  .lib-productPrice h2 {
    font-size: clamp(52px, 17vw, 72px);
  }

  .lib-productFaq__item summary {
    padding: 20px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.6;
  }

  .lib-productFaq__item p {
    padding: 0 20px 22px 66px;
  }
}
