@charset "utf-8";
@import url("//fonts.googleapis.com/css?family=Montserrat:500,700&display=swap");
@import url("//fonts.googleapis.com/earlyaccess/notosansjp.css?display=swap");

:root {
  --product-ink: #102033;
  --product-muted: #5f6f82;
  --product-blue: #0050a0;
  --product-blue-dark: #06345f;
  --product-blue-soft: #e7f2ff;
  --product-green: #0d8b72;
  --product-green-soft: #e7f7f2;
  --product-orange: #f59e0b;
  --product-orange-soft: #fff3d8;
  --product-gray: #f5f7fb;
  --product-line: #d9e2ee;
  --product-white: #ffffff;
  --product-shadow: 0 18px 45px rgba(16, 32, 51, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body.blue-suite-product-page {
  margin: 0;
  background: var(--product-white);
  color: var(--product-ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.blue-suite-product-page * {
  box-sizing: border-box;
}

body.blue-suite-product-page img {
  display: block;
  max-width: 100%;
}

body.blue-suite-product-page a {
  color: inherit;
  text-decoration: none;
}

.product-mobile-break {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 238, 0.9);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
  text-align: left;
}

.site-header__brand img {
  width: 160px;
  height: auto;
}

.site-header__brand span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
}

.site-header__brand small {
  color: var(--product-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--product-ink);
  font-size: 14px;
  font-weight: 700;
}

.site-header__nav a {
  white-space: nowrap;
}

.site-header__nav a:not(.site-header__cta):hover {
  color: var(--product-blue);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--product-white);
  background: var(--product-orange);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.28);
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--product-ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
  transform-origin: center;
}

.site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.product-main {
  overflow: hidden;
}

.product-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.product-hero {
  min-height: 680px;
  min-height: 72svh;
  display: flex;
  align-items: center;
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(4, 24, 45, 0.98) 0%, rgba(4, 24, 45, 0.92) 52%, rgba(4, 24, 45, 0.76) 100%),
    url("../movie/revised_poster_test.png");
  background-size: cover;
  background-position: center top;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 24, 45, 0.96) 0%, rgba(4, 24, 45, 0.86) 48%, rgba(4, 24, 45, 0.66) 100%),
    linear-gradient(180deg, rgba(4, 24, 45, 0.18) 0%, rgba(4, 24, 45, 0.3) 100%);
  pointer-events: none;
}

.product-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.product-hero__inner {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 74px;
  z-index: 2;
}

.product-hero__eyebrow,
.product-kicker {
  margin: 0 0 14px;
  color: var(--product-green);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.product-hero__eyebrow {
  color: #9fe6d7;
}

.product-hero__eyebrow,
.product-hero h1,
.product-hero__lead,
.product-hero__actions,
.product-hero__badges {
  opacity: 0;
  transform: translateY(18px);
  animation: productHeroFadeIn 0.8s ease forwards;
}

.product-hero h1 {
  animation-delay: 0.12s;
}

.product-hero__lead {
  animation-delay: 0.26s;
}

.product-hero__actions {
  animation-delay: 0.4s;
}

.product-hero__badges {
  animation-delay: 0.52s;
}

@keyframes productHeroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--product-white);
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.product-hero__lead {
  max-width: 780px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.9;
}

.product-hero__actions,
.product-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.product-button:hover {
  transform: translateY(-2px);
}

.product-button--primary {
  color: var(--product-white);
  background: var(--product-orange);
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
}

.product-button--ghost {
  color: var(--product-ink);
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.product-button--ghost:hover {
  background: var(--product-white);
}

.product-button--light {
  color: var(--product-blue-dark);
  background: var(--product-white);
}

.product-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 840px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.product-hero__badges li {
  padding: 8px 13px;
  color: var(--product-white);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 700;
}

.product-screen-frame {
  overflow: hidden;
  background: var(--product-white);
  border: 1px solid rgba(217, 226, 238, 0.92);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.18);
}

.product-screen-frame__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  background: #f8fbff;
  border-bottom: 1px solid var(--product-line);
}

.product-screen-frame__bar span {
  width: 8px;
  height: 8px;
  background: #c7d4e6;
  border-radius: 50%;
}

.product-screen-frame__bar strong {
  margin-left: 6px;
  color: var(--product-muted);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.product-screen-frame img {
  width: 100%;
  aspect-ratio: 1440 / 980;
  object-fit: cover;
  object-position: top left;
}

.product-screen-frame--compact {
  box-shadow: 0 18px 45px rgba(16, 32, 51, 0.14);
}

.product-stats {
  position: relative;
  z-index: 3;
  padding: 0 0 34px;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0) 0%, #f5f7fb 72%);
}

.product-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -54px;
}

.product-stat-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 226, 238, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.1);
}

.product-stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  color: var(--product-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-stat-card__icon img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.product-stats strong {
  display: block;
  color: var(--product-blue-dark);
  font-size: 17px;
  line-height: 1.45;
  white-space: nowrap;
}

.product-stats span {
  display: block;
  margin-top: 6px;
  color: var(--product-muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-section {
  padding: 92px 0;
  background: var(--product-white);
}

.product-section--light {
  background: var(--product-gray);
}

.product-section--blue {
  background: var(--product-blue-dark);
}

.product-section--ai {
  background: linear-gradient(135deg, #0b4f66 0%, #0d8b72 100%);
}

.product-section--screens,
#features,
#integration,
.product-section--flow,
.product-section--pricing,
.product-section--contact,
.product-section--resources {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.product-section--screens::before,
#features::before,
#integration::before,
.product-section--flow::before,
.product-section--pricing::before,
.product-section--contact::before,
.product-section--resources::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(245, 247, 251, 0.1) 100%),
    repeating-linear-gradient(135deg, rgba(0, 80, 160, 0.03) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(45deg, rgba(0, 80, 160, 0.025) 0 1px, transparent 1px 24px);
  background-position:
    center,
    0 0,
    0 0;
  background-repeat:
    no-repeat,
    repeat,
    repeat;
  background-size:
    auto,
    24px 24px,
    24px 24px;
  pointer-events: none;
  z-index: 0;
}

.product-section--screens > .product-container,
#features > .product-container,
#integration > .product-container,
.product-section--flow > .product-container,
.product-section--pricing > .product-container,
.product-section--contact > .product-container,
.product-section--resources > .product-container {
  position: relative;
  z-index: 1;
}

.product-section--screens {
  background: var(--product-white);
}

.product-section--screens::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(135deg, rgba(0, 80, 160, 0.03) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(45deg, rgba(0, 80, 160, 0.025) 0 1px, transparent 1px 24px);
}

#integration {
  background: var(--product-white);
}

#integration::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(135deg, rgba(0, 80, 160, 0.03) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(45deg, rgba(0, 80, 160, 0.025) 0 1px, transparent 1px 24px);
}

.product-section--flow {
  background: var(--product-white);
}

.product-section--flow::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(135deg, rgba(0, 80, 160, 0.03) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(45deg, rgba(0, 80, 160, 0.025) 0 1px, transparent 1px 24px);
}

.product-section--pricing {
  background: var(--product-gray);
}

.product-section--pricing::before {
  background: none;
}

.product-section--contact .product-section__head {
  max-width: 980px;
}

.product-section--contact .product-section__head p {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.8;
}

.product-section--contact .product-container + .product-container {
  margin-top: 40px;
}

.product-section__head {
  max-width: 820px;
  text-align: center;
}

.product-section--screens .product-section__head {
  max-width: 980px;
}

.product-section--screens .product-section__head h2 {
  color: var(--product-blue);
}

#issues .product-section__head h2,
#features .product-split__content h2 {
  color: var(--product-blue);
}

.product-section__head h2,
.product-split__content h2,
.price-panel h2,
.product-cta h2,
.ai-panel h2 {
  margin: 0;
  color: var(--product-ink);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.product-section__head p,
.product-split__content p,
.price-panel p,
.product-cta p,
.ai-panel p {
  margin: 18px 0 0;
  color: var(--product-muted);
  font-size: 17px;
}

.product-section--blue .product-kicker,
.product-section--blue .product-section__head h2,
.product-section--blue .product-section__head p,
.product-section--ai .product-kicker,
.product-section--ai h2,
.product-section--ai p {
  color: var(--product-white);
}

.issue-grid,
.module-grid,
.flow-list,
.screen-showcase {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

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

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

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

.screen-showcase {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: start;
  gap: 38px;
}

.screen-showcase__main {
  display: grid;
  gap: 24px;
}

.screen-showcase__main h3,
.screen-card h3 {
  margin: 0;
  color: var(--product-ink);
  font-size: 22px;
  line-height: 1.45;
}

.screen-showcase__main p,
.screen-card p {
  margin: 10px 0 0;
  color: var(--product-muted);
}

.screen-showcase__cards {
  display: grid;
  gap: 16px;
}

.screen-card {
  display: grid;
  grid-template-columns: minmax(140px, 36%) 1fr;
  grid-template-areas:
    "media title"
    "media text";
  column-gap: 16px;
  row-gap: 6px;
  align-items: center;
  min-height: 128px;
  padding: 14px;
  background: var(--product-white);
  border: 1px solid var(--product-line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.08);
}

.screen-card img {
  grid-area: media;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border: 1px solid var(--product-line);
  border-radius: 6px;
}

.screen-card h3 {
  grid-area: title;
  align-self: end;
  font-size: 20px;
}

.screen-card p {
  grid-area: text;
  align-self: start;
  font-size: 15px;
}

.issue-card,
.module-card,
.flow-item,
.ai-feature {
  border-radius: 8px;
}

.issue-card {
  min-height: 250px;
  padding: 30px;
  background: var(--product-white);
  border: 1px solid var(--product-line);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.06);
}

.issue-card__number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--product-orange);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.issue-card h3,
.module-card h3,
.flow-item h3,
.ai-feature h3 {
  margin: 0;
  color: var(--product-ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
}

.issue-card p,
.module-card p,
.flow-item p,
.ai-feature p {
  margin: 14px 0 0;
  color: var(--product-muted);
  font-size: 15px;
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 64px;
  align-items: center;
}

.product-split--reverse {
  grid-template-columns: 0.86fr 1fr;
}

.product-split--reverse .product-split__content {
  order: 2;
}

.product-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-checks span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--product-blue-dark);
  background: var(--product-blue-soft);
  border: 1px solid #cfe5ff;
  border-radius: 8px;
  font-weight: 700;
}

.product-visual {
  padding: 24px;
  background: var(--product-blue-soft);
  border: 1px solid #cfe5ff;
  border-radius: 8px;
  box-shadow: var(--product-shadow);
}

.product-visual--screen {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-visual--green {
  background: var(--product-white);
  border-color: var(--product-line);
}

.product-visual--orange {
  background: var(--product-white);
  border-color: var(--product-line);
}

.product-visual > img {
  width: 100%;
  border-radius: 6px;
}

.module-card {
  min-height: 250px;
  padding: 26px;
  background: var(--product-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.module-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 20px;
  padding: 0 10px;
  color: var(--product-white);
  background: var(--product-blue);
  border-radius: 8px;
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.product-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  position: relative;
  padding-left: 28px;
  color: var(--product-ink);
  font-weight: 700;
}

.product-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--product-green);
  border-radius: 50%;
}

.ai-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: center;
}

.ai-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ai-feature {
  min-height: 270px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
}

.ai-feature span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 40px;
  margin-bottom: 18px;
  padding: 0 12px;
  color: var(--product-white);
  background: var(--product-green);
  border-radius: 8px;
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.ai-tool-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.ai-tool-strip span,
.ai-tool-strip strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  color: var(--product-white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.ai-tool-strip strong {
  color: #083c35;
  background: #bff2e5;
}

.flow-item {
  position: relative;
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid var(--product-line);
  background: var(--product-white);
}

.flow-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--product-blue);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.price-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 46px;
  background: var(--product-white);
  border: 1px solid var(--product-line);
  border-radius: 8px;
  box-shadow: var(--product-shadow);
}

.price-box {
  border: 1px solid var(--product-line);
  border-radius: 8px;
  overflow: hidden;
}

.price-box dl {
  margin: 0;
}

.price-box dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--product-line);
}

.price-box dt {
  color: var(--product-muted);
  font-weight: 700;
}

.price-box dd {
  margin: 0;
  color: var(--product-ink);
  font-weight: 700;
}

.price-box dd strong {
  display: block;
  color: var(--product-blue);
  font-size: 30px;
  line-height: 1.2;
}

.price-box dd span {
  display: block;
  margin-top: 4px;
  color: var(--product-muted);
  font-size: 13px;
  font-weight: 500;
}

.price-box p {
  margin: 0;
  padding: 18px 24px;
  color: var(--product-blue-dark);
  background: var(--product-blue-soft);
  font-size: 14px;
  font-weight: 700;
}

.product-cta {
  padding: 82px 0;
  background: var(--product-blue-dark);
}

.product-cta__inner {
  max-width: 900px;
  text-align: center;
}

.product-cta h2,
.product-cta p,
.product-cta .product-kicker {
  color: var(--product-white);
}

.product-cta__actions {
  justify-content: center;
}

.product-form {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  background: var(--product-gray);
  border: 1px solid var(--product-line);
  border-radius: 8px;
}

.product-form .service_x_large_text {
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.product-form .service_contact_description {
  max-width: 680px;
  margin: 8px auto 28px;
  color: var(--product-muted);
  text-align: center;
}

.product-form__notice {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid var(--product-line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.product-form__notice.is-success {
  color: #0f6b58;
  background: #e8f8f2;
  border-color: #b8e8d9;
}

.product-form__notice.is-error {
  color: #8b2e2e;
  background: #fff1f1;
  border-color: #f0cccc;
}

.service_contact_form {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: 20px 24px;
  margin: 0;
}

.service_contact_form dt,
.service_contact_form dd {
  margin: 0;
}

.service_contact_form dt {
  padding-top: 12px;
  color: var(--product-ink);
  font-weight: 700;
  line-height: 1.55;
}

.service_contact_form dt.need,
.service_contact_form dt.noneed,
.service_contact_form dt.oninput {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 8px;
  align-items: start;
}

.service_contact_form dt.need::after {
  content: "必須";
  display: inline-flex;
  margin-left: 0;
  min-width: 44px;
  padding: 2px 8px;
  color: var(--product-white);
  background: var(--product-orange);
  border-radius: 6px;
  font-size: 12px;
  justify-content: center;
}

.service_contact_form dt.noneed::after,
.service_contact_form dt.oninput::after {
  content: "任意";
  display: inline-flex;
  margin-left: 0;
  min-width: 44px;
  padding: 2px 8px;
  color: var(--product-muted);
  background: var(--product-white);
  border: 1px solid var(--product-line);
  border-radius: 6px;
  font-size: 12px;
  justify-content: center;
}

.service_contact_input,
.service_contact_form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--product-ink);
  background: var(--product-white);
  border: 1px solid #cbd6e4;
  border-radius: 6px;
  font: inherit;
}

.service_contact_form textarea {
  min-height: 130px;
  resize: vertical;
}

.service_contact_name {
  display: block;
  width: 100%;
  margin: 0;
}

.service_contact_form .form_text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service_contact_first_name,
.service_contact_last_name,
.request_text_small {
  margin: 0 0 6px;
  color: var(--product-muted);
  font-size: 13px;
}

.request_text_after {
  margin: 8px 0 0;
  line-height: 1.7;
}

.service_contact_form dt .request_text_small {
  grid-column: 1 / -1;
  display: block;
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.65;
}

.service_contact_radio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.service_contact_radio label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  width: 100%;
  cursor: pointer;
}

.service_contact_radio input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.service_contact_radio span {
  color: var(--product-ink);
  font-weight: 700;
}

.service_contact_privacy {
  grid-column: 2;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--product-muted);
  font-size: 14px;
}

.service_contact_privacy input {
  margin-top: 6px;
}

.service_contact_privacy_link {
  color: var(--product-blue);
  font-weight: 700;
}

.product-form .button {
  margin-top: 28px;
  text-align: center;
}

.service_submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  color: var(--product-white);
  background: var(--product-blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.service_submit.disabled,
.service_submit:disabled {
  background: #9aa8b7;
  cursor: not-allowed;
}

.ssl {
  margin-top: 24px;
  color: var(--product-muted);
  text-align: center;
  font-size: 13px;
}

.product-simple-page {
  min-height: calc(100svh - 76px);
  background: var(--product-white);
}

.product-simple-hero {
  position: relative;
  padding: 96px 0 120px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.product-simple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0, 80, 160, 0.04) 1px, transparent 1px),
    linear-gradient(45deg, rgba(0, 80, 160, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  pointer-events: none;
}

.product-simple-hero--notfound {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.product-simple-card {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 56px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--product-line);
  border-radius: 8px;
  box-shadow: var(--product-shadow);
}

.product-simple-card--error {
  width: min(760px, 100%);
}

.product-simple-card h1 {
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
}

.product-simple-lead {
  margin: 18px 0 0;
  color: var(--product-muted);
  font-size: 18px;
  line-height: 1.9;
}

.product-simple-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.product-simple-meta div {
  padding: 20px 22px;
  background: var(--product-gray);
  border: 1px solid var(--product-line);
  border-radius: 8px;
}

.product-simple-meta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--product-green);
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.product-simple-meta span {
  display: block;
  color: var(--product-ink);
  font-weight: 700;
  line-height: 1.7;
}

.product-simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.product-simple-note {
  margin: 22px 0 0;
  color: var(--product-muted);
  font-size: 14px;
}

.product-simple-note a,
.product-simple-links a {
  color: var(--product-blue);
  font-weight: 700;
}

.product-simple-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.knowledge-page {
  background: var(--product-white);
}

.knowledge-hero {
  position: relative;
  min-height: 640px;
  min-height: 70svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0 104px;
  background-color: #071a2e;
  --knowledge-hero-image: url("../images/screenshots/dashboard.png");
  --knowledge-hero-position: center center;
  --knowledge-hero-size: cover;
}

.knowledge-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--knowledge-hero-image);
  background-repeat: no-repeat;
  background-size: var(--knowledge-hero-size);
  background-position: var(--knowledge-hero-position);
  transform: scale(1.02);
  pointer-events: none;
}

.knowledge-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 26%, rgba(68, 211, 204, 0.22) 0%, rgba(68, 211, 204, 0) 24%),
    linear-gradient(90deg, rgba(4, 24, 45, 0.97) 0%, rgba(4, 24, 45, 0.94) 46%, rgba(4, 24, 45, 0.8) 73%, rgba(4, 24, 45, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 24, 45, 0.2) 0%, rgba(4, 24, 45, 0.44) 100%);
  pointer-events: none;
}

.knowledge-hero__inner {
  position: relative;
  z-index: 2;
}

.knowledge-hero .product-kicker {
  color: #9fe6d7;
}

.knowledge-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--product-white);
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1.22;
  text-shadow: 0 10px 24px rgba(3, 16, 30, 0.22);
}

.knowledge-hero__lead {
  max-width: 780px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.95;
  text-shadow: 0 8px 18px rgba(3, 16, 30, 0.18);
}

.knowledge-hero__actions,
.knowledge-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.knowledge-hero--use-cases {
  --knowledge-hero-image: url("../images/screenshots/requests.png");
  --knowledge-hero-position: center top;
}

.knowledge-hero--why-blue-suite {
  --knowledge-hero-image: url("../images/screenshots/dashboard.png");
  --knowledge-hero-position: center top;
}

.knowledge-hero--security {
  --knowledge-hero-image: url("../images/screenshots/orders.png");
  --knowledge-hero-position: center top;
}

.knowledge-hero--faq {
  --knowledge-hero-image: url("../images/screenshots/invoice.png");
  --knowledge-hero-position: center top;
}

.knowledge-hero--rag {
  --knowledge-hero-image: url("../images/ai-rag-mcp-unified.svg");
  --knowledge-hero-position: right 12% center;
  --knowledge-hero-size: min(680px, 44vw);
}

.knowledge-hero--mcp {
  --knowledge-hero-image: url("../images/api-integration.png");
  --knowledge-hero-position: right 10% center;
  --knowledge-hero-size: min(760px, 46vw);
}

.knowledge-section {
  position: relative;
  padding: 90px 0;
}

.knowledge-section--gray {
  background: var(--product-gray);
}

.knowledge-section--pattern {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.knowledge-section--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0, 80, 160, 0.035) 1px, transparent 1px),
    linear-gradient(45deg, rgba(0, 80, 160, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  pointer-events: none;
}

.knowledge-section > .product-container {
  position: relative;
  z-index: 1;
}

.knowledge-section__head {
  max-width: 860px;
  margin-bottom: 36px;
}

.knowledge-section__head h2 {
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 38px;
  line-height: 1.3;
}

.knowledge-grid {
  display: grid;
  gap: 22px;
}

.knowledge-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.knowledge-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.knowledge-card {
  min-height: 100%;
  padding: 30px;
  background: var(--product-white);
  border: 1px solid var(--product-line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.06);
}

.knowledge-card--accent {
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.knowledge-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 18px;
  color: var(--product-blue-dark);
  background: var(--product-blue-soft);
  border-radius: 999px;
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.knowledge-card h3,
.knowledge-step h3,
.knowledge-faq__item h3 {
  margin: 0;
  color: var(--product-ink);
  font-size: 28px;
  line-height: 1.4;
}

.knowledge-card p,
.knowledge-step p,
.knowledge-faq__item p,
.knowledge-list li,
.knowledge-cta p {
  margin: 16px 0 0;
  color: var(--product-muted);
  font-size: 16px;
  line-height: 1.9;
}

.knowledge-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.knowledge-step {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--product-line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.05);
}

.knowledge-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--product-white);
  background: var(--product-blue);
  border-radius: 8px;
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.knowledge-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.knowledge-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.knowledge-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
}

.knowledge-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--product-green);
  border-radius: 50%;
}

.knowledge-faq {
  display: grid;
  gap: 18px;
}

.knowledge-faq__item {
  padding: 26px 28px;
  background: var(--product-white);
  border: 1px solid var(--product-line);
  border-radius: 8px;
}

.knowledge-matrix {
  overflow-x: auto;
  background: var(--product-white);
  border: 1px solid var(--product-line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.05);
}

.knowledge-matrix table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.knowledge-matrix th,
.knowledge-matrix td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--product-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.knowledge-matrix thead th {
  color: var(--product-blue-dark);
  background: var(--product-gray);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

.knowledge-matrix tbody th {
  width: 180px;
  color: var(--product-ink);
  font-size: 14px;
  font-weight: 700;
  background: rgba(245, 247, 251, 0.8);
}

.knowledge-matrix tbody tr:last-child th,
.knowledge-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.product-section--resources {
  background: var(--product-white);
}

.product-section--resources .product-section__head {
  max-width: 1120px;
}

.product-section--resources .product-section__head h2 {
  margin-bottom: 44px;
  white-space: nowrap;
}

.product-section--resources .product-section__head p {
  max-width: 980px;
  margin: 0 auto;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--product-line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.05);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-4px);
  border-color: #9fc0e4;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.12);
}

.resource-card:focus-visible {
  outline: 3px solid rgba(0, 80, 160, 0.18);
  outline-offset: 2px;
}

.resource-card:active {
  transform: translateY(-1px);
}

.resource-card__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 18px;
  color: var(--product-green);
  background: var(--product-green-soft);
  border-radius: 999px;
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.resource-card h3 {
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 28px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.resource-card p {
  margin: 14px 0 0;
  color: var(--product-muted);
  line-height: 1.9;
  transition: color 0.2s ease;
}

.resource-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  color: var(--product-blue);
  font-weight: 700;
  transition: color 0.2s ease;
}

.resource-card__link::after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.resource-card:hover .resource-card__kicker,
.resource-card:focus-visible .resource-card__kicker {
  color: var(--product-white);
  background: var(--product-green);
}

.resource-card:hover h3,
.resource-card:focus-visible h3 {
  color: var(--product-blue);
}

.resource-card:hover p,
.resource-card:focus-visible p {
  color: #4e6074;
}

.resource-card:hover .resource-card__link,
.resource-card:focus-visible .resource-card__link {
  color: var(--product-blue-dark);
}

.resource-card:hover .resource-card__link::after,
.resource-card:focus-visible .resource-card__link::after {
  transform: translateX(4px);
}

.knowledge-cta {
  padding: 88px 0 104px;
  background: #0c1d30;
}

.knowledge-cta__inner {
  max-width: 920px;
}

.knowledge-cta h2,
.knowledge-cta p,
.knowledge-cta .product-kicker {
  color: var(--product-white);
}

.knowledge-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  background: #0b1724;
  color: var(--product-white);
}

.site-footer__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 38px;
}

.site-footer__brand img {
  width: 170px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__brand p,
.site-footer__contact span,
.site-footer__bottom small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__brand p {
  max-width: 410px;
  margin: 18px 0 0;
}

.site-footer__nav,
.site-footer__resources,
.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__nav a,
.site-footer__resources a,
.site-footer__contact a,
.site-footer__contact p {
  color: var(--product-white);
  font-weight: 700;
}

.site-footer__heading {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.site-footer__contact p {
  margin: 0;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 20px;
  text-align: center;
}

@media (max-width: 1024px) {
  .site-header__brand span {
    display: none;
  }

  .product-hero {
    min-height: auto;
  }

  .product-hero h1,
  .product-hero__lead {
    max-width: 760px;
  }

  .module-grid,
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-split,
  .product-split--reverse,
  .ai-panel,
  .knowledge-split,
  .price-panel,
  .screen-showcase {
    grid-template-columns: 1fr;
  }

  .product-split--reverse .product-split__content {
    order: 0;
  }

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

  .resource-grid,
  .knowledge-grid--three,
  .knowledge-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-section--resources .product-section__head h2 {
    white-space: normal;
  }

  .screen-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "title"
      "text";
    align-content: start;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header__inner {
    width: min(100% - 28px, 1160px);
    min-height: 68px;
  }

  .site-header__brand img {
    width: 144px;
  }

  .site-header__toggle {
    display: block;
  }

  .site-header__nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    gap: 0;
    padding: 0 14px;
    background: var(--product-white);
    border-bottom: 1px solid var(--product-line);
    box-shadow: 0 20px 35px rgba(16, 32, 51, 0.12);
    transform: translateY(-8px);
    transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.28s ease, transform 0.28s ease, visibility 0.28s;
  }

  .site-header__nav.is-open {
    max-height: 430px;
    opacity: 1;
    visibility: visible;
    padding: 8px 14px 14px;
    transform: translateY(0);
  }

  .site-header__nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    width: 100%;
    padding: 0 14px;
    border-bottom: 1px solid var(--product-line);
    border-radius: 0;
    color: var(--product-ink);
  }

  .site-header__nav a:not(.site-header__cta):hover {
    background: var(--product-gray);
  }

  .site-header__cta {
    margin-top: 10px;
    justify-content: center;
    min-height: 48px;
    border-bottom: 0;
    border-radius: 8px;
  }

  .product-hero {
    min-height: 610px;
    min-height: 70svh;
    background-image:
      linear-gradient(90deg, rgba(4, 24, 45, 0.9) 0%, rgba(4, 24, 45, 0.72) 100%),
      url("../movie/revised_poster_test.png");
    background-position: top left;
  }

  .product-hero h1 {
    font-size: 40px;
  }

  .product-hero__lead {
    font-size: 16px;
  }

  .product-stats__grid,
  .issue-grid,
  .ai-feature-grid,
  .screen-showcase__cards {
    grid-template-columns: 1fr;
  }

  .product-section--screens::before,
  #features::before,
  #integration::before,
  .product-section--flow::before,
  .product-section--pricing::before,
  .product-section--contact::before {
    background-size:
      auto,
      20px 20px,
      20px 20px;
    background-position:
      center,
      0 0,
      0 0;
  }

  .product-stats {
    padding-bottom: 24px;
  }

  .product-stats__grid {
    margin-top: 18px;
  }

  .ai-tool-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-stat-card {
    min-height: 112px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: center;
    justify-content: initial;
    padding: 22px 20px;
    text-align: left;
  }

  .product-stat-card__icon,
  .product-stat-card__icon img {
    width: 40px;
    height: 40px;
  }

  .product-section {
    padding: 68px 0;
  }

  .product-section__head h2,
  .product-split__content h2,
  .price-panel h2,
  .product-cta h2,
  .ai-panel h2 {
    font-size: 30px;
  }

  .screen-card {
    grid-template-columns: minmax(120px, 32%) 1fr;
    grid-template-areas:
      "media title"
      "media text";
    min-height: 118px;
  }

  .product-form {
    padding: 28px 18px;
  }

  .resource-card h3 {
    font-size: 24px;
  }

  .knowledge-hero {
    min-height: 560px;
    padding: 78px 0 88px;
  }

  .knowledge-hero h1 {
    font-size: 42px;
  }

  .knowledge-section {
    padding: 74px 0;
  }

  .knowledge-section__head h2 {
    font-size: 32px;
  }

  .knowledge-card h3,
  .knowledge-step h3,
  .knowledge-faq__item h3 {
    font-size: 24px;
  }

  .product-simple-hero {
    padding: 80px 0 96px;
  }

  .product-simple-card {
    padding: 40px 32px;
  }

  .product-simple-card h1 {
    font-size: 36px;
  }

  .product-simple-meta {
    grid-template-columns: 1fr;
  }

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

  .service_contact_privacy {
    grid-column: 1;
  }

  .service_contact_form dt {
    padding-top: 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-container,
  .product-hero__inner,
  .site-footer__inner {
    width: min(100% - 28px, 1160px);
  }

  .product-hero {
    min-height: auto;
  }

  .product-hero__inner {
    padding: 58px 0 44px;
  }

  .knowledge-hero {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .knowledge-hero::after {
    background:
      radial-gradient(circle at 82% 18%, rgba(68, 211, 204, 0.16) 0%, rgba(68, 211, 204, 0) 22%),
      linear-gradient(180deg, rgba(4, 24, 45, 0.93) 0%, rgba(4, 24, 45, 0.86) 55%, rgba(4, 24, 45, 0.8) 100%);
  }

  .knowledge-hero h1 {
    font-size: 34px;
  }

  .knowledge-hero__lead {
    font-size: 16px;
  }

  .knowledge-hero__actions {
    display: grid;
  }

  .knowledge-grid--two,
  .resource-grid,
  .knowledge-grid--three,
  .knowledge-steps {
    grid-template-columns: 1fr;
  }

  .knowledge-card,
  .knowledge-step,
  .knowledge-faq__item {
    padding: 24px 20px;
  }

  .knowledge-section__head h2 {
    font-size: 28px;
  }

  .knowledge-card h3,
  .knowledge-step h3,
  .knowledge-faq__item h3 {
    font-size: 24px;
  }

  .knowledge-cta {
    padding: 68px 0 78px;
  }

  .resource-card {
    padding: 24px 20px;
  }

  .resource-card h3 {
    font-size: 24px;
  }

  .product-section--resources .product-section__head h2 {
    margin-bottom: 28px;
  }

  .knowledge-hero__actions,
  .knowledge-cta__actions,
  .ai-panel__actions {
    display: grid;
  }

  .product-simple-hero {
    padding: 64px 0 80px;
  }

  .product-simple-card {
    padding: 30px 20px;
  }

  .product-simple-card h1 {
    font-size: 30px;
  }

  .product-simple-lead {
    font-size: 16px;
  }

  .product-simple-actions {
    display: grid;
  }

  .product-mobile-break {
    display: block;
  }

  .product-hero h1 {
    font-size: 34px;
  }

  .product-hero__actions,
  .product-cta__actions {
    display: grid;
  }

  .product-button {
    width: 100%;
  }

  .module-grid,
  .flow-list,
  .ai-tool-strip {
    grid-template-columns: 1fr;
  }

  .screen-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "title"
      "text";
  }

  .price-panel {
    padding: 26px 18px;
  }

  .price-box dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service_contact_name {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .service_contact_form .form_text,
  .service_contact_radio {
    grid-template-columns: 1fr;
  }

  .service_contact_form .form_text {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero__eyebrow,
  .product-hero h1,
  .product-hero__lead,
  .product-hero__actions,
  .product-hero__badges {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
