:root {
  --red: #d81924;
  --red-deep: #9f1119;
  --blue: #0057b8;
  --blue-deep: #052d66;
  --gold: #f6c431;
  --ink: #111827;
  --text: #273244;
  --muted: #667085;
  --line: #d8e2ef;
  --paper: #f6f8fb;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(9, 31, 66, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
.seminar-panel[id],
[id^="service-"] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 42, 82, 0.08);
  backdrop-filter: blur(14px);
  transition: min-height 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  box-shadow: 0 10px 28px rgba(8, 25, 54, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 58px;
  height: auto;
}

.brand span {
  font-size: clamp(18px, 2vw, 24px);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(9px, 1.2vw, 18px);
  font-size: 12px;
  font-weight: 900;
}

.site-nav > a,
.nav-group > summary {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.nav-group > summary::-webkit-details-marker {
  display: none;
}

.nav-group > summary::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-group[open] > summary::before {
  transform: translateY(1px) rotate(225deg);
}

.site-nav > a::after,
.nav-group > summary::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.nav-group > summary:hover::after,
.nav-group > summary:focus-visible::after,
.nav-group[open] > summary::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 50;
  display: grid;
  width: 210px;
  overflow: hidden;
  border: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 44px rgba(9, 31, 66, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -5px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-wide {
  width: 270px;
}

.nav-group[open] .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 87, 184, 0.1);
  color: var(--ink);
  line-height: 1.45;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: #edf6ff;
  color: var(--blue);
}

.header-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.button::after {
  width: 8px;
  height: 8px;
  margin-left: 12px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button:hover,
.button:focus-visible {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  filter: brightness(1.04);
}

.button-compact {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 13px;
}

.button-red {
  background: linear-gradient(180deg, #ef2f38, var(--red));
}

.button-blue {
  background: linear-gradient(180deg, #1474d5, var(--blue));
}

.button-yellow {
  color: #1b1b1b;
  background: linear-gradient(180deg, #ffe16b, var(--gold));
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 132px clamp(18px, 4vw, 56px) 36px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0 36%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.28) 70%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(0, 43, 100, 0.08)),
    url("assets/hero-generated.png") center right / cover no-repeat,
    #fff;
}

.hero::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, rgba(5, 45, 102, 0.14), transparent);
  pointer-events: none;
}

.hero-stage {
  position: absolute;
  right: clamp(18px, 3.4vw, 56px);
  bottom: clamp(240px, 26vh, 320px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 40px);
  width: min(48vw, 680px);
  min-height: 390px;
  pointer-events: none;
}

.hero-stage::before {
  position: absolute;
  right: -4%;
  bottom: 0;
  left: -4%;
  height: 38%;
  content: "";
  background: radial-gradient(ellipse at center, rgba(5, 45, 102, 0.24), transparent 66%);
  transform: perspective(600px) rotateX(58deg);
  transform-origin: bottom;
}

.hero-stage img {
  position: relative;
  z-index: 1;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(6, 21, 44, 0.34));
}

.hero-book {
  width: clamp(178px, 15vw, 240px);
  border-radius: 4px;
}

.hero-book-left {
  transform: translateY(16px) rotate(-2deg);
}

.hero-book-right {
  width: clamp(224px, 19vw, 310px);
  transform: translateY(0) rotate(1deg);
}

.hero-sales {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.kicker,
.section-title p,
.contact-copy p {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--red);
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 28px;
  color: var(--text);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 800;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 30px 0 0;
}

.hero-metrics div {
  padding: 14px 16px;
  border-left: 5px solid var(--blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(14, 35, 68, 0.13);
  backdrop-filter: blur(8px);
}

.hero-metrics dt {
  color: var(--blue-deep);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.2;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.seminar-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 30px;
  left: clamp(18px, 4vw, 56px);
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
  color: #fff;
  background:
    linear-gradient(95deg, rgba(5, 45, 102, 0.98) 0 68%, rgba(216, 25, 36, 0.98) 68% 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.seminar-panel p {
  display: inline-block;
  margin: 0 0 6px;
  padding: 2px 10px;
  color: #1f2937;
  background: var(--gold);
  font-weight: 900;
}

.seminar-panel h2 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.35;
}

.seminar-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.seminar-panel li {
  padding: 4px 11px;
  color: var(--blue-deep);
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.section,
.section-slim {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 56px);
}

.section-slim {
  padding-top: 44px;
  padding-bottom: 38px;
  background: #fff;
}

.section-title {
  max-width: 1040px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.32;
}

.section-lead {
  display: block;
  margin-top: 12px;
  color: var(--blue-deep);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  line-height: 1.6;
}

.logo-rail,
.download-rail {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 8px 44px 18px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.rail-track::-webkit-scrollbar {
  display: none;
}

.logo-rail .rail-track span {
  display: grid;
  place-items: center;
  min-height: 86px;
  color: var(--blue);
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  background: #fff;
}

.logo-rail .rail-track span:nth-child(3),
.logo-rail .rail-track span:nth-child(6) {
  color: var(--red);
}

.logo-rail small {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 11px;
}

.logo-marquee {
  display: grid;
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logo-marquee__row {
  overflow: hidden;
}

.logo-marquee__track {
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  animation: logoMarquee 42s linear infinite;
  will-change: transform;
}

.logo-marquee__row--reverse .logo-marquee__track {
  animation-direction: reverse;
  animation-duration: 50s;
}

.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee img {
  flex: 0 0 auto;
  width: 172px;
  height: 66px;
  padding: 0;
  object-fit: contain;
  border: 0;
  background: transparent;
  box-shadow: none;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    mask-image: none;
  }

  .logo-marquee__track {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    animation: none;
  }
}

.rail-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 34px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 24px rgba(17, 35, 68, 0.14);
  transform: translateY(-50%);
  cursor: pointer;
}

.rail-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.rail-button.prev {
  left: 0;
}

.rail-button.prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.rail-button.next {
  right: 0;
}

.rail-button.next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 87, 184, 0.1), transparent 34%),
    linear-gradient(180deg, #f6faff 0%, #fff 50%, #f5f8fd 100%);
}

.service-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.service-showcase {
  display: grid;
  gap: 30px;
  max-width: 1420px;
  margin: 0 auto;
}

.service-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 87, 184, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(9, 31, 66, 0.1);
}

.service-panel-manual {
  padding: clamp(26px, 3.4vw, 42px);
  border-color: transparent;
}

.service-panel-hero {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.service-panel-icon,
.service-card-icon,
.sales-feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.service-panel-icon {
  width: 92px;
  height: 92px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #0075df, var(--blue));
  box-shadow: 0 20px 40px rgba(0, 87, 184, 0.22);
}

.service-panel-icon-red {
  background: linear-gradient(145deg, #ef2f38, var(--red));
  box-shadow: 0 20px 40px rgba(216, 25, 36, 0.2);
}

.service-panel svg,
.service-benefits svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.service-panel-copy p,
.sales-panel-copy p,
.sales-feature-card strong {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 900;
  line-height: 1.35;
}

.sales-panel-copy p,
.sales-feature-card strong {
  color: var(--red);
}

.service-panel-copy h3,
.sales-panel-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
}

.service-panel-copy span,
.sales-panel-copy span {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 800;
  line-height: 1.75;
}

.service-panel-visual {
  position: relative;
  align-self: stretch;
  min-height: 175px;
  border-radius: 6px;
}

.service-panel-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.76) 38%, rgba(255, 255, 255, 0.22) 100%);
}

.service-panel-visual img {
  width: 100%;
  height: 100%;
  min-height: 175px;
  object-fit: cover;
  object-position: center right;
  opacity: 0.82;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.service-mini-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 178px;
  padding: 22px 24px 78px;
  border: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: 7px;
  background: linear-gradient(180deg, #fff, #f2f8ff);
  box-shadow: 0 18px 34px rgba(9, 31, 66, 0.08);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  color: var(--blue);
  border-radius: 50%;
  background: #eaf3ff;
}

.service-card-thumb {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(9, 31, 66, 0.1);
}

.service-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-mini-card strong {
  display: none;
}

.service-mini-card h4,
.sales-feature-card h4,
.case-grid h3,
.download-rail h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.4;
}

.service-mini-card p,
.sales-feature-card p,
.case-grid p {
  margin: 0 0 14px;
  font-weight: 700;
}

.service-mini-card .service-card-foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 12px 16px 12px 20px;
  color: #fff;
  border: 0;
  border-radius: 0 0 7px 7px;
  background: linear-gradient(180deg, #1474d5, var(--blue));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  transition: filter 0.18s ease;
}

.service-card-foot span {
  position: relative;
  padding-left: 0;
}

.service-card-foot span::before {
  display: none;
  content: "";
}

.service-card-foot span::after {
  display: none;
  content: "";
}

.service-primary-link::after {
  width: 12px;
  height: 12px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.service-card-foot i {
  display: block;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.service-card-foot i::before {
  display: block;
  width: 8px;
  height: 8px;
  margin: 12px 0 0 11px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.service-primary-link {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: min(100%, 360px);
  min-height: 64px;
  margin: 26px auto 0;
  padding: 14px 34px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #0875df, var(--blue));
  box-shadow: 0 8px 0 rgba(0, 46, 105, 0.28);
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 900;
}

.service-primary-link::after {
  display: block;
  content: "";
}

.service-panel-sales {
  display: block;
  padding: clamp(26px, 3.4vw, 42px);
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 247, 0.94));
}

.sales-panel-copy {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 28px;
  align-items: center;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(216, 25, 36, 0.16);
}

.service-panel-visual-sales::before {
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.72) 34%, rgba(216, 25, 36, 0.08) 100%);
}

.service-panel-visual-sales img {
  object-fit: contain;
  object-position: center right;
  background: rgba(255, 255, 255, 0.7);
}

.sales-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 156px;
  max-width: 780px;
  margin: 28px auto 0;
  padding: 24px 24px 82px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(68, 19, 22, 0.12);
}

.sales-feature-icon {
  width: 62px;
  height: 62px;
  color: var(--red);
}

.sales-feature-card h4 {
  margin-bottom: 4px;
}

.sales-feature-card p {
  margin-bottom: 0;
}

.sales-feature-card .service-card-foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 12px 16px 12px 20px;
  color: #fff;
  border: 0;
  border-radius: 0 0 7px 7px;
  background: linear-gradient(180deg, #ef2f38, var(--red));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  transition: filter 0.18s ease;
}

.service-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 34px;
  color: var(--ink);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 900;
}

.service-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  border-right: 1px solid rgba(5, 45, 102, 0.28);
}

.service-benefits span:last-child {
  border-right: 0;
}

.service-benefits svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.book-intro {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.book-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.book-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(0, 87, 184, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(8, 31, 66, 0.12);
}

.book-cover {
  display: block;
  line-height: 0;
}

.book-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 18px 32px rgba(9, 31, 66, 0.18);
}

.book-card-copy h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}

.book-card-copy p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 20px;
  padding: 10px 20px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 6px 0 rgba(137, 97, 0, 0.18);
  font-size: 14px;
  font-weight: 900;
}

.book-link::after {
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.reasons {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f2f7ff 100%);
}

.reasons .section-title,
.reason-list {
  position: relative;
  z-index: 1;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.reason-list article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 310px;
  padding: 32px;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow: 0 22px 54px rgba(8, 31, 66, 0.13);
}

.reason-list article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue), #2d8fff);
}

.reason-list article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--red), #ff5962);
}

.reason-list article:nth-child(3)::before {
  background: linear-gradient(90deg, #b28a22, var(--gold));
}

.reason-list article::after {
  position: absolute;
  right: -28px;
  bottom: -38px;
  color: rgba(0, 87, 184, 0.06);
  content: attr(data-index);
  font-size: 160px;
  font-weight: 900;
  line-height: 1;
}

.reason-list span {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0;
  padding: 6px 11px;
  color: #fff;
  border-radius: 999px;
  background: var(--blue-deep);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.reason-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  color: var(--blue);
  border: 1px solid rgba(0, 87, 184, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 87, 184, 0.12), rgba(255, 255, 255, 0.94));
  box-shadow: 0 14px 26px rgba(9, 31, 66, 0.1);
}

.reason-list article:nth-child(2) span {
  background: var(--red);
}

.reason-list article:nth-child(3) span {
  color: #221b07;
  background: var(--gold);
}

.reason-list article:nth-child(2) .reason-icon {
  color: var(--red);
  border-color: rgba(216, 25, 36, 0.16);
  background: linear-gradient(145deg, rgba(216, 25, 36, 0.12), rgba(255, 255, 255, 0.96));
}

.reason-list article:nth-child(3) .reason-icon {
  color: #b28a22;
  border-color: rgba(178, 138, 34, 0.18);
  background: linear-gradient(145deg, rgba(246, 196, 49, 0.2), rgba(255, 255, 255, 0.96));
}

.reason-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.reason-list h3 {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.35;
}

.reason-list p {
  margin: 0;
  font-weight: 700;
}

.cases {
  background: transparent;
}

.case-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.case-grid article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.case-thumb {
  display: flex;
  align-items: flex-end;
  height: 150px;
  margin: -26px -26px 22px;
  padding: 18px;
  background-color: #eef5ff;
  background-position: center;
  background-size: cover;
}

.case-thumb span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: #fff;
  border-radius: 4px;
  background: rgba(5, 45, 102, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.case-thumb-blue {
  background-image:
    linear-gradient(135deg, rgba(0, 87, 184, 0.72), rgba(0, 87, 184, 0.12)),
    url("assets/hero-generated.png");
}

.case-thumb-red {
  background-image:
    linear-gradient(135deg, rgba(216, 25, 36, 0.74), rgba(159, 17, 25, 0.12)),
    url("assets/contact-generated.png");
}

.case-thumb-gold {
  background-color: #fff8df;
  background-image:
    linear-gradient(135deg, rgba(5, 45, 102, 0.62), rgba(246, 196, 49, 0.18)),
    url("assets/sales-material.png");
  background-size: cover, contain;
  background-repeat: no-repeat;
}

.case-grid small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 900;
}

.case-grid a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}

.case-grid a::after {
  content: " >";
}

.media {
  background: #fff;
}

.media-tile {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 146px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(13, 35, 68, 0.14);
}

.media-tile span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 7px;
}

.media-tile strong {
  grid-column: 2;
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.media-tile small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 800;
}

.media-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 38px;
  margin-top: 12px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #1578da 0%, var(--blue) 100%);
  box-shadow: 0 4px 0 rgba(0, 51, 114, 0.24);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-tile > .media-cta {
  grid-column: 2;
}

.media-cta::after {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.media-tile:hover .media-cta,
.media-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 0 rgba(0, 51, 114, 0.2);
}

.media-cta-youtube {
  background: linear-gradient(180deg, #f03244 0%, var(--red) 100%);
  box-shadow: 0 4px 0 rgba(150, 8, 18, 0.24);
}

.media-cta-note {
  background: linear-gradient(180deg, #222 0%, #080808 100%);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.media-cta-dark {
  background: linear-gradient(180deg, #192334 0%, #06090f 100%);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.youtube span {
  overflow: hidden;
}

.youtube span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.note span {
  overflow: hidden;
  background: #fff;
}

.note span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.x span {
  overflow: hidden;
}

.x span svg {
  display: block;
  width: 100%;
  height: 100%;
}

.media-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.8fr);
  grid-template-areas:
    "youtube note"
    "youtube x";
  align-items: stretch;
}

.media-tile.youtube {
  grid-area: youtube;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  min-height: 360px;
  padding: 22px;
}

.media-tile.note {
  grid-area: note;
}

.media-tile.x {
  grid-area: x;
}

.youtube-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 45, 102, 0.92), rgba(216, 25, 36, 0.78)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.youtube-video::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.youtube-video iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-video iframe:not([src]) {
  display: none;
}

.youtube-video:has(iframe[src])::before,
.youtube-video:has(iframe[src]) .youtube-play {
  display: none;
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.youtube-play::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  content: "";
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--red);
  transform: translate(-40%, -50%);
}

.youtube-body {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
}

.youtube-body div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: center;
  min-width: 0;
}

.media-tile.youtube .youtube-body > span {
  width: 76px;
  height: 76px;
}

.media-tile.youtube strong {
  grid-column: 1 / -1;
  font-size: clamp(26px, 3vw, 36px);
}

.media-tile.youtube small {
  grid-column: 1;
  font-size: 16px;
}

.media-tile.youtube .media-cta-youtube {
  grid-column: 2;
  justify-self: end;
  white-space: nowrap;
}

.news {
  padding-top: clamp(42px, 6vw, 74px);
  background:
    linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.news-board {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 48px rgba(9, 31, 66, 0.08);
}

.news-item {
  display: grid;
  grid-template-columns: 128px 104px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item:hover {
  background: #f5f9ff;
  transform: translateX(4px);
}

.news-item time {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
}

.news-item span {
  display: inline-flex;
  justify-content: center;
  min-width: 88px;
  padding: 7px 12px;
  color: var(--blue);
  border: 1px solid rgba(0, 87, 184, 0.22);
  border-radius: 999px;
  background: #eef6ff;
  font-size: 12px;
  font-weight: 900;
}

.news-item-featured span {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.news-item strong {
  color: var(--ink);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  line-height: 1.45;
}

.news-item strong::after {
  margin-left: 10px;
  color: var(--blue);
  content: ">";
}

.downloads {
  color: #fff;
  background:
    linear-gradient(112deg, var(--blue-deep) 0 62%, var(--red-deep) 62% 100%);
}

.section-title-light p,
.section-title-light h2 {
  color: #fff;
}

.download-rail .rail-track {
  grid-auto-columns: minmax(270px, 1fr);
}

.download-rail article {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 14px;
  min-height: 166px;
  padding: 16px;
  color: var(--ink);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.download-rail img,
.template-thumb {
  width: 98px;
  height: 132px;
  object-fit: cover;
  border-radius: 5px;
  background: #f3f6fb;
}

.download-rail article:nth-child(3) img {
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.download-rail img.download-thumb-contain {
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.template-thumb {
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--blue-deep);
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  border: 1px solid var(--line);
}

.download-rail h3 {
  min-height: 72px;
  font-size: 15px;
}

.download-rail a {
  display: inline-flex;
  justify-self: start;
  align-self: end;
  padding: 7px 12px;
  color: #fff;
  background: var(--red);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
}

.case-actions,
.news-actions,
.download-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.case-actions .button,
.news-actions .button,
.download-actions .button {
  min-width: min(100%, 260px);
}

.case-grid.is-frame,
.download-rail.is-frame {
  display: block;
  background: transparent;
}

.download-rail.is-frame {
  max-width: 1160px;
}

.child-content-frame {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
}

.child-content-frame-cases {
  height: 465px;
}

.child-content-frame-downloads {
  height: 488px;
}

body.page-embed {
  overflow: hidden;
  background: transparent;
}

body.page-embed .site-header,
body.page-embed .page-hero,
body.page-embed .page-section-heading,
body.page-embed .site-footer {
  display: none;
}

body.page-embed main,
body.page-embed .page-section {
  padding: 0;
  background: transparent;
}

body.page-embed .page-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
}

body.page-embed .catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  background: transparent;
}

body.page-embed .catalog-card {
  box-shadow: 0 18px 42px rgba(9, 31, 66, 0.1);
}

body.page-embed .catalog-body {
  min-height: 192px;
}

.contact {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(60px, 9vw, 110px) clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(100deg, rgba(159, 17, 25, 0.96) 0 38%, rgba(159, 17, 25, 0.84) 44%, rgba(5, 45, 102, 0.72) 72%, rgba(5, 45, 102, 0.55) 100%),
    url("assets/contact-generated.png") center right / cover no-repeat,
    var(--red);
}

.contact::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.contact-copy p {
  color: var(--gold);
}

.contact-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.3;
}

.contact-copy span {
  font-weight: 900;
}

.contact-line-button {
  margin-top: 24px;
}

.company-table a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
}

.contact-form label:nth-child(3),
.contact-form label:nth-child(4) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #c7d2e2;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 87, 184, 0.18);
  border-color: var(--blue);
}

.contact-form button {
  justify-self: start;
}

.form-message {
  align-self: center;
  margin: 0;
  color: var(--red-deep);
  font-weight: 900;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 68px) clamp(18px, 4vw, 56px) 28px;
  color: #e9eef7;
  background:
    linear-gradient(115deg, rgba(5, 45, 102, 0.96) 0 46%, rgba(16, 22, 34, 0.98) 46% 100%),
    #111827;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--blue) 0 58%, var(--red) 58% 78%, var(--gold) 78% 100%);
}

.site-footer::after {
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 62%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 30px clamp(30px, 6vw, 74px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  align-items: center;
  justify-self: start;
  width: fit-content;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.footer-brand img {
  width: 62px;
}

.footer-brand span {
  margin-top: 0;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.footer-menu-groups {
  display: grid;
  gap: 22px;
}

.footer-main-nav,
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
}

.footer-main-nav {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(210px, 1.2fr) minmax(310px, 1.8fr);
  gap: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-nav-group {
  display: flex;
  align-content: start;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-nav-group p {
  width: 100%;
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.footer-nav-group a {
  color: #fff;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 900;
}

.footer-nav-group a::after {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 8px;
  content: "";
  background: var(--gold);
  transition: width 0.2s ease;
}

.footer-nav-group a:hover::after {
  width: 100%;
}

.footer-nav-services {
  display: grid;
  grid-template-columns: 1fr;
}

.footer-nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-nav-links p {
  grid-column: 1 / -1;
}

.footer-legal-nav {
  display: flex;
  gap: 8px 18px;
}

.footer-legal-nav a {
  color: rgba(233, 238, 247, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.footer-legal-nav a:hover {
  color: #fff;
}

.site-footer small {
  grid-column: 2;
  color: rgba(233, 238, 247, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.site-footer > .brand,
.site-footer > nav,
.site-footer > small {
  position: relative;
  z-index: 1;
}

.site-footer > .brand {
  justify-content: center;
  margin: 0 auto 22px;
}

.site-footer > nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: 14px;
  font-weight: 900;
}

.site-footer > small {
  display: block;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.contact .reveal {
  opacity: 1;
  transform: none;
}

body.subpage {
  background:
    linear-gradient(180deg, #f4f8fd 0%, #fff 420px, #f6f8fb 100%);
}

body.subpage.page-embed {
  background: transparent;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 64px) clamp(56px, 7vw, 92px);
  color: var(--ink);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.98) 0 42%, rgba(255, 255, 255, 0.82) 62%, rgba(255, 255, 255, 0.32) 100%),
    url("assets/hero-generated.png") center right / cover no-repeat,
    #fff;
}

.page-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -36%;
  width: 58vw;
  height: 72%;
  content: "";
  background: linear-gradient(135deg, transparent 0 44%, rgba(0, 87, 184, 0.1) 44% 100%);
  pointer-events: none;
}

.page-hero-inner,
.page-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.breadcrumb a {
  color: var(--blue);
}

.breadcrumb span::before {
  margin-right: 8px;
  color: #a7b4c7;
  content: "/";
}

.page-hero .kicker,
.page-section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.16;
}

.page-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-section {
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 64px);
}

.page-section-white {
  background: #fff;
}

.page-section-blue {
  color: #fff;
  background:
    linear-gradient(110deg, var(--blue-deep) 0 62%, var(--red) 62% 100%);
}

.page-section-heading {
  margin-bottom: 28px;
}

.page-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.28;
}

.page-section-blue .page-section-heading h2,
.page-section-blue .page-section-kicker {
  color: #fff;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.content-card,
.summary-card,
.faq-list details,
.download-list article,
.case-list article,
.seminar-list article,
.column-card {
  border: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(9, 31, 66, 0.08);
}

.content-card,
.summary-card,
.column-card {
  padding: 26px;
}

.content-card strong,
.summary-card strong,
.download-list strong,
.case-list strong,
.seminar-list strong {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.content-card h3,
.summary-card h3,
.download-list h3,
.case-list h3,
.seminar-list h3,
.column-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 900;
  line-height: 1.35;
}

.content-card p,
.summary-card p,
.download-list p,
.case-list p,
.seminar-list p,
.column-card p {
  margin: 0;
  font-weight: 700;
}

.column-article-grid {
  align-items: stretch;
}

.column-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.column-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(9, 31, 66, 0.15);
}

.column-card-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #eaf4ff;
}

.column-card-thumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 45, 101, 0.04) 20%, rgba(0, 45, 101, 0.72) 100%);
  content: "";
}

.column-card-sales .column-card-thumb::after {
  background: linear-gradient(180deg, rgba(143, 12, 27, 0.03) 20%, rgba(143, 12, 27, 0.72) 100%);
}

.column-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.column-card:hover .column-card-thumb img {
  transform: scale(1.04);
}

.column-genre {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 4px;
  background: var(--blue-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.column-card-sales .column-genre {
  background: var(--red);
}

.column-card-operation .column-genre {
  background: #0873ad;
}

.column-card-body {
  display: flex;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.column-card .column-card-meta {
  display: flex;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.column-card .column-card-meta span + span {
  padding-left: 8px;
  border-left: 1px solid rgba(0, 87, 184, 0.28);
  color: #68788f;
  letter-spacing: 0;
}

.column-card-sales .column-card-meta {
  color: var(--red);
}

.column-card-body h3 {
  margin-bottom: 14px;
}

.column-card-body > p:not(.column-card-meta) {
  color: #43536a;
  line-height: 1.85;
}

.column-card-link {
  display: flex;
  margin-top: auto;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 87, 184, 0.14);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.column-card-link i {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  font-style: normal;
  line-height: 1;
  place-items: center;
}

.column-card-sales .column-card-link {
  border-top-color: rgba(230, 29, 45, 0.16);
  color: var(--red);
}

.column-card-sales .column-card-link i {
  background: var(--red);
}

.number-card {
  position: relative;
  overflow: hidden;
}

.number-card::after {
  position: absolute;
  right: -12px;
  bottom: -42px;
  color: rgba(0, 87, 184, 0.06);
  content: attr(data-number);
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
}

.info-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(9, 31, 66, 0.08);
}

.info-table dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  margin: 0;
}

.info-table dt,
.info-table dd {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.info-table dt {
  color: var(--blue-deep);
  background: #edf5ff;
  font-weight: 900;
}

.info-table dd {
  font-weight: 700;
}

.info-table dt:last-of-type,
.info-table dd:last-of-type {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  position: relative;
  padding: 20px 58px 20px 24px;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 12px;
  content: "";
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: translateY(-65%) rotate(45deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  font-weight: 700;
}

.download-list,
.case-list,
.seminar-list {
  display: grid;
  gap: 18px;
}

.download-list article,
.case-list article,
.seminar-list article {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.download-thumb,
.case-thumb-small,
.seminar-date {
  display: grid;
  place-items: center;
  min-height: 118px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.download-list article:nth-child(2n) .download-thumb,
.case-list article:nth-child(2n) .case-thumb-small,
.seminar-list article:nth-child(2n) .seminar-date {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
}

.download-list .button,
.case-list .button,
.seminar-list .button {
  white-space: nowrap;
}

.policy-article {
  max-width: 920px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(9, 31, 66, 0.08);
}

.policy-article h2,
.policy-article h3 {
  color: var(--blue-deep);
  font-weight: 900;
}

.policy-article h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-article h2:not(:first-child) {
  margin-top: 34px;
}

.policy-article h3 {
  margin: 32px 0 10px;
  font-size: 21px;
}

.policy-article p,
.policy-article li {
  font-weight: 700;
}

.policy-article ul,
.policy-article ol {
  padding-left: 1.4em;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: clamp(26px, 5vw, 42px);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(110deg, var(--blue-deep) 0 62%, var(--red) 62% 100%);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 6px;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
}

.cta-band p {
  margin: 0;
  font-weight: 800;
}

.faq-list-rich .faq-answer {
  padding: 0 24px 26px;
}

.faq-list-rich .faq-answer p {
  padding: 0;
}

.faq-list-rich .faq-answer p + p,
.policy-article p + p {
  margin-top: 12px;
}

.faq-list-rich .faq-answer ul,
.policy-article ul,
.policy-number-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 1.25em;
}

.faq-list-rich .faq-answer li strong {
  color: var(--red);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(9, 31, 66, 0.08);
  flex-direction: column;
}

.catalog-thumb {
  position: relative;
  display: grid;
  min-height: 168px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.catalog-thumb::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.78), rgba(0, 35, 84, 0.55)),
    var(--thumb, none) center / cover no-repeat;
}

.catalog-thumb-red::before {
  background:
    linear-gradient(135deg, rgba(216, 25, 36, 0.78), rgba(0, 35, 84, 0.48)),
    var(--thumb, none) center / cover no-repeat;
}

.catalog-thumb span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  min-width: 96px;
  min-height: 44px;
  padding: 8px 14px;
  place-items: center;
  color: #fff;
  border-radius: 6px;
  background: rgba(0, 35, 84, 0.86);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.catalog-thumb-label::before {
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.94), rgba(0, 35, 84, 0.94));
}

.catalog-thumb-label.catalog-thumb-red::before {
  background:
    linear-gradient(135deg, rgba(216, 25, 36, 0.94), rgba(121, 19, 31, 0.94));
}

.catalog-thumb-book {
  min-height: 168px;
  background:
    linear-gradient(135deg, #f3f8ff, #fff);
}

.catalog-thumb-book::before {
  display: none;
}

.catalog-thumb-book img {
  width: 112px;
  max-height: 146px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 18px 32px rgba(8, 31, 66, 0.18);
}

.catalog-thumb-image {
  background: #fff;
}

.catalog-thumb-image::before {
  display: none;
}

.catalog-thumb-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-thumb-contain img {
  padding: 18px;
  object-fit: contain;
}

.catalog-body {
  display: flex;
  min-height: 214px;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.catalog-body strong {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.catalog-body h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 900;
  line-height: 1.35;
}

.catalog-body p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.strip-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 20px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.strip-button::after {
  width: 10px;
  height: 10px;
  content: "";
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.strip-button-blue {
  background: linear-gradient(90deg, var(--blue), #0877df);
}

.strip-button-red {
  background: linear-gradient(90deg, var(--red), #ef2f38);
}

/* Distinct child-page experiences */
body.case-page {
  background: #eef4fb;
}

body:not(.page-embed).case-page .case-page-hero {
  color: #fff;
  background:
    linear-gradient(105deg, rgba(0, 35, 84, 0.98) 0 48%, rgba(0, 87, 184, 0.84) 72%, rgba(0, 35, 84, 0.5) 100%),
    url("assets/hero-generated.png") center right / cover no-repeat;
}

body:not(.page-embed).case-page .case-page-hero::after {
  right: -4vw;
  bottom: -22%;
  width: 54vw;
  height: 92%;
  background: linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.1) 45% 100%);
}

body:not(.page-embed).case-page .case-page-hero h1,
body:not(.page-embed).case-page .case-page-hero .page-lead {
  color: #fff;
}

body:not(.page-embed).case-page .case-page-hero .breadcrumb,
body:not(.page-embed).case-page .case-page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.76);
}

.case-impact-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
}

.case-impact-summary div {
  display: grid;
  min-height: 104px;
  padding: 18px 20px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 26, 65, 0.5);
  backdrop-filter: blur(8px);
}

.case-impact-summary strong {
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.case-impact-summary span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 900;
}

.case-projects {
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.04) 0 38%, transparent 38% 100%),
    #eef4fb;
}

.case-projects-heading,
.seminar-program-heading,
.document-library-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.case-projects-heading > p,
.seminar-program-heading > p,
.document-library-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

body:not(.page-embed).case-page .case-catalog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

body:not(.page-embed).case-page .case-catalog .catalog-card {
  border: 0;
  border-radius: 4px;
  box-shadow: 0 20px 48px rgba(9, 31, 66, 0.12);
}

body:not(.page-embed).case-page .case-catalog .catalog-thumb {
  min-height: 220px;
}

body:not(.page-embed).case-page .case-catalog .catalog-body {
  min-height: 250px;
}

body:not(.page-embed).case-page .case-catalog .case-featured {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  grid-column: 1 / -1;
}

body:not(.page-embed).case-page .case-catalog .catalog-card:last-child {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  grid-column: 1 / -1;
}

body:not(.page-embed).case-page .case-catalog .case-featured .catalog-thumb {
  grid-row: 1 / 3;
  min-height: 100%;
}

body:not(.page-embed).case-page .case-catalog .catalog-card:last-child .catalog-thumb {
  grid-row: 1 / 3;
  min-height: 100%;
}

body:not(.page-embed).case-page .case-catalog .case-featured .catalog-body {
  min-height: 250px;
  padding: 34px;
}

.case-result-tags,
.seminar-meta,
.document-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 20px 0 0;
  list-style: none;
}

.case-result-tags li {
  padding: 5px 10px;
  color: var(--blue-deep);
  border: 1px solid #cad9eb;
  background: #f3f7fc;
  font-size: 12px;
  font-weight: 900;
}

body.seminar-page {
  background: #f8f7f5;
}

body:not(.page-embed).seminar-page .seminar-page-hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(159, 17, 25, 0.98) 0 45%, rgba(216, 25, 36, 0.88) 45% 62%, rgba(5, 45, 102, 0.93) 62% 100%),
    url("assets/contact-generated.png") center / cover no-repeat;
}

body:not(.page-embed).seminar-page .seminar-page-hero::after {
  right: 8vw;
  bottom: -28%;
  width: 42vw;
  height: 86%;
  background: linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.1) 48% 100%);
}

body:not(.page-embed).seminar-page .seminar-page-hero h1,
body:not(.page-embed).seminar-page .seminar-page-hero .page-lead {
  color: #fff;
}

body:not(.page-embed).seminar-page .seminar-page-hero .breadcrumb,
body:not(.page-embed).seminar-page .seminar-page-hero .breadcrumb a,
body:not(.page-embed).seminar-page .seminar-page-hero .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.seminar-topic-list,
.document-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.seminar-topic-list span,
.document-topic-nav span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.seminar-program {
  background:
    linear-gradient(180deg, #f8f7f5, #fff 60%),
    #fff;
}

body:not(.page-embed).seminar-page .seminar-catalog {
  grid-template-columns: 1fr;
  gap: 18px;
}

body:not(.page-embed).seminar-page .seminar-catalog .catalog-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 220px;
  min-height: 220px;
  overflow: visible;
  border: 1px solid #e1e5eb;
  border-left: 0;
  border-radius: 2px;
  box-shadow: 0 16px 38px rgba(30, 36, 48, 0.08);
}

body:not(.page-embed).seminar-page .seminar-catalog .seminar-archive {
  background: #fafafa;
}

.seminar-date-block {
  display: grid;
  padding: 24px;
  place-items: center;
  color: #fff;
  background: var(--blue-deep);
}

.seminar-date-block-red {
  background: var(--blue-deep);
}

.seminar-date-block-muted {
  color: var(--blue-deep);
  background: #e8f0fa;
}

.seminar-date-block time {
  display: grid;
  place-items: center;
  line-height: 1;
}

.seminar-date-block time span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.seminar-date-block time strong {
  margin: 8px 0;
  font-size: 60px;
}

.seminar-date-block time small {
  font-size: 13px;
  font-weight: 900;
}

.seminar-date-block em {
  margin-top: 18px;
  padding: 5px 10px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body:not(.page-embed).seminar-page .seminar-catalog .catalog-body {
  min-height: 0;
  padding: 28px 32px;
}

body:not(.page-embed).seminar-page .seminar-catalog .catalog-body h3 {
  font-size: clamp(22px, 2.4vw, 31px);
}

.seminar-meta {
  margin-top: 0;
  padding-top: 18px;
}

.seminar-meta li {
  padding: 4px 10px;
  color: var(--muted);
  border: 1px solid #d7dde5;
  background: #f8f9fa;
  font-size: 11px;
  font-weight: 900;
}

.seminar-entry {
  display: grid;
  min-height: 100%;
  padding: 24px;
  place-content: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-deep), var(--blue));
  text-align: center;
}

.seminar-entry-red {
  background: linear-gradient(145deg, var(--red-deep), var(--red));
}

.seminar-entry span {
  font-size: 17px;
  font-weight: 900;
}

.seminar-entry small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
}

body.document-page {
  background: #f2f6fb;
}

body:not(.page-embed).document-page .document-page-hero {
  color: #fff;
  background:
    linear-gradient(112deg, rgba(5, 45, 102, 0.99) 0 58%, rgba(0, 87, 184, 0.9) 58% 72%, rgba(216, 25, 36, 0.92) 72% 100%),
    url("assets/sales-material.png") center right / cover no-repeat;
}

body:not(.page-embed).document-page .document-page-hero::after {
  right: -8vw;
  bottom: -42%;
  width: 50vw;
  height: 94%;
  background: linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.12) 42% 100%);
}

body:not(.page-embed).document-page .document-page-hero h1,
body:not(.page-embed).document-page .document-page-hero .page-lead {
  color: #fff;
}

body:not(.page-embed).document-page .document-page-hero .breadcrumb,
body:not(.page-embed).document-page .document-page-hero .breadcrumb a,
body:not(.page-embed).document-page .document-page-hero .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.document-library {
  background:
    linear-gradient(180deg, #edf3fa, #f8fafc 70%, #fff);
}

body:not(.page-embed).document-page .download-catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

body:not(.page-embed).document-page .download-catalog .catalog-card {
  height: 100%;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(9, 31, 66, 0.12);
}

body:not(.page-embed).document-page .download-catalog .catalog-card:not(.document-featured) {
  min-height: 560px;
}

body:not(.page-embed).document-page .download-catalog .catalog-thumb {
  min-height: 196px;
}

body:not(.page-embed).document-page .download-catalog .catalog-body {
  min-height: 268px;
}

body:not(.page-embed).document-page .download-catalog .document-featured {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  grid-column: 1 / -1;
}

body:not(.page-embed).document-page .download-catalog .document-featured .catalog-thumb {
  grid-row: 1 / 3;
  min-height: 100%;
}

body:not(.page-embed).document-page .download-catalog .document-featured .catalog-body {
  min-height: 260px;
  padding: 34px;
}

.document-tags {
  margin-top: auto;
}

.document-tags li {
  padding: 4px 10px;
  color: var(--blue-deep);
  background: #eaf3ff;
  font-size: 11px;
  font-weight: 900;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.mission-vision article {
  min-height: 220px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.86), rgba(0, 35, 84, 0.7)),
    url("assets/mission-family-bg.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.mission-vision article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(216, 25, 36, 0.88), rgba(0, 35, 84, 0.7)),
    url("assets/vision-manual-bg.png") center / cover no-repeat;
}

.mission-vision span,
.profile-badge span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mission-vision h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.32;
}

.company-table {
  margin-top: 0;
}

.company-story .page-section-heading p {
  margin: 10px 0 0;
  color: var(--blue-deep);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
}

.story-panel,
.profile-card {
  border: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(9, 31, 66, 0.08);
}

.story-panel {
  padding: clamp(26px, 4vw, 44px);
}

.story-panel p {
  margin: 0;
  color: var(--text);
  font-weight: 750;
  line-height: 2;
}

.story-panel p + p {
  margin-top: 16px;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(330px, 36%) minmax(0, 1fr);
  overflow: hidden;
}

.profile-badge {
  position: relative;
  display: flex;
  min-height: 680px;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-deep), var(--blue));
  flex-direction: column;
}

.profile-badge::before {
  position: absolute;
  z-index: 1;
  right: -22%;
  bottom: -16%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  transform: rotate(45deg);
}

.profile-badge::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 35, 84, 0), rgba(0, 35, 84, 0.94) 62%, var(--blue-deep));
}

.profile-portrait {
  position: absolute;
  right: -9%;
  bottom: 0;
  width: 118%;
  max-width: none;
  max-height: 97%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 26px rgba(0, 24, 58, 0.26));
}

.profile-badge-copy {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
}

.profile-badge strong {
  display: block;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.2;
}

.profile-badge p {
  margin: 8px 0 0;
  font-weight: 800;
}

.profile-body {
  padding: clamp(26px, 4vw, 42px);
}

.profile-title {
  color: var(--blue-deep);
  font-weight: 900;
}

.profile-body p {
  margin: 0;
  font-weight: 750;
  line-height: 1.95;
}

.profile-body p + p {
  margin-top: 14px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.video-placeholder {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 20px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 35, 84, 0.82), rgba(216, 25, 36, 0.62)),
    url("assets/contact-generated.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.video-placeholder:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(216, 25, 36, 0.76), rgba(0, 35, 84, 0.66)),
    url("assets/hero-generated.png") center / cover no-repeat;
}

.video-placeholder:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.78), rgba(0, 35, 84, 0.66)),
    url("assets/sales-material.png") center / cover no-repeat;
}

.video-placeholder span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.video-placeholder span::before {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  content: "";
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}

.video-placeholder strong {
  align-self: end;
  font-size: 18px;
  font-weight: 900;
}

.video-placeholder.video-embed {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  background: #000;
}

.video-placeholder.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.policy-article-wide {
  max-width: 1040px;
}

.policy-number-list {
  counter-reset: policy;
  padding-left: 0;
  list-style: none;
}

.policy-number-list li {
  position: relative;
  padding: 16px 18px 16px 52px;
  border: 1px solid rgba(0, 87, 184, 0.12);
  border-radius: 7px;
  background: #f5f9ff;
}

.policy-number-list li::before {
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  width: 24px;
  height: 24px;
  content: counter(policy, decimal-leading-zero);
  counter-increment: policy;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.site-footer-large {
  text-align: inherit;
}

.concept-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 820px;
  margin-top: 34px;
  padding: 20px 24px;
  border: 1px solid rgba(0, 87, 184, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(9, 31, 66, 0.12);
  backdrop-filter: blur(10px);
}

.concept-hero-card span,
.shuhari-step span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.concept-hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.35;
}

.concept-hero-card p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.concept-book-pair {
  position: relative;
  width: 148px;
  min-height: 118px;
}

.concept-book-pair img {
  position: absolute;
  bottom: 0;
  width: 76px;
  border-radius: 4px;
  box-shadow: 0 18px 28px rgba(8, 31, 66, 0.22);
}

.concept-book-pair img:first-child {
  left: 10px;
  transform: rotate(-6deg);
}

.concept-book-pair img:last-child {
  right: 2px;
  width: 86px;
  transform: rotate(5deg);
}

.shuhari-overview {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  margin-bottom: 28px;
}

.shuhari-overview article,
.concept-visual-card,
.pdca-wheel {
  border: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(9, 31, 66, 0.08);
}

.shuhari-overview article {
  padding: 28px;
}

.shuhari-overview p {
  margin: 0;
  font-weight: 800;
}

.shuhari-overview p + p {
  margin-top: 10px;
}

.language-map i {
  display: block;
  width: 100%;
  height: 12px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  transform: skewX(-28deg);
}

.shuhari-diagram {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
}

.shuhari-step {
  position: relative;
  min-height: 312px;
  padding: 30px;
  border: 1px solid rgba(0, 87, 184, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff, #f3f8ff);
  box-shadow: 0 22px 48px rgba(9, 31, 66, 0.1);
}

.shuhari-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -37px;
  z-index: 3;
  width: 28px;
  height: 42px;
  content: "";
  background: var(--blue);
  clip-path: polygon(0 0, 48% 0, 100% 50%, 48% 100%, 0 100%, 52% 50%);
  filter: drop-shadow(0 5px 8px rgba(0, 87, 184, 0.2));
  transform: translateY(-50%);
}

.shuhari-badge {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, #1474d5, var(--blue));
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(0, 87, 184, 0.22);
}

.shuhari-step:nth-child(2) .shuhari-badge {
  background: linear-gradient(180deg, #ef2f38, var(--red));
  box-shadow: 0 16px 30px rgba(216, 25, 36, 0.22);
}

.shuhari-step:nth-child(3) .shuhari-badge {
  color: #1f2937;
  background: linear-gradient(180deg, #ffe16b, var(--gold));
  box-shadow: 0 16px 30px rgba(178, 138, 34, 0.24);
}

.shuhari-step h3 {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.36;
}

.shuhari-step p {
  margin: 0;
  font-weight: 800;
}

.concept-split,
.pdca-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.concept-language-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  overflow: hidden;
  border: 1px solid rgba(0, 87, 184, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #fff 0 66%, #eef6ff 66% 100%);
  box-shadow: 0 18px 42px rgba(9, 31, 66, 0.08);
}

.concept-language-copy,
.concept-language-visual {
  padding: clamp(28px, 4vw, 48px);
}

.concept-language-copy h2 {
  margin: 0 0 22px;
  color: var(--blue-deep);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

.concept-language-copy p,
.concept-language-visual p {
  font-weight: 700;
}

.concept-language-copy p + p {
  margin-top: 14px;
}

.concept-language-visual {
  display: grid;
  align-content: center;
}

.concept-language-visual p {
  margin: 0;
}

.concept-visual-card {
  overflow: hidden;
  display: grid;
  align-content: center;
  padding: 28px;
  background:
    linear-gradient(160deg, #fff 0 54%, #eef6ff 54% 100%);
}

.concept-visual-card img {
  width: 130px;
  margin: 0 auto 22px;
  border-radius: 5px;
  box-shadow: 0 18px 34px rgba(8, 31, 66, 0.18);
}

.language-map {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.language-map span {
  display: grid;
  place-items: center;
  min-height: 56px;
  color: var(--blue-deep);
  border: 1px solid rgba(0, 87, 184, 0.18);
  border-radius: 7px;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
}

.concept-visual-card p {
  margin: 0;
  font-weight: 800;
}

.need-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding-left: 98px;
}

.need-icon {
  position: absolute;
  top: 28px;
  left: 26px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, #1474d5, var(--blue));
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 87, 184, 0.2);
}

.need-card:nth-child(2n) .need-icon {
  background: linear-gradient(180deg, #ef2f38, var(--red));
}

.need-card::after {
  position: absolute;
  right: -10px;
  bottom: -52px;
  color: rgba(0, 87, 184, 0.05);
  content: attr(data-visual);
  font-size: 130px;
  font-weight: 900;
  line-height: 1;
}

.pdca-layout {
  align-items: stretch;
}

.pdca-wheel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(15, 106, 190, 0.08), transparent 42%),
    linear-gradient(145deg, #f9fcff, #edf6ff);
  isolation: isolate;
}

.pdca-wheel::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(68%, 350px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background:
    conic-gradient(
      from -45deg,
      #0b3b75 0 24%,
      transparent 24% 25%,
      #075fb8 25% 49%,
      transparent 49% 50%,
      #1684d5 50% 74%,
      transparent 74% 75%,
      #62aee7 75% 99%,
      transparent 99% 100%
    );
  -webkit-mask: radial-gradient(circle, transparent 0 51%, #000 52% 71%, transparent 72%);
  mask: radial-gradient(circle, transparent 0 51%, #000 52% 71%, transparent 72%);
  transform: translate(-50%, -50%);
}

.pdca-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  z-index: 3;
  width: 142px;
  height: 142px;
  color: var(--blue-deep);
  border: 1px solid rgba(0, 87, 184, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow:
    0 18px 34px rgba(9, 31, 66, 0.16),
    0 0 0 12px rgba(255, 255, 255, 0.76);
}

.pdca-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 128px;
  min-height: 74px;
  padding: 10px;
  color: var(--blue-deep);
  border: 2px solid #075fb8;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.97);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 24px rgba(9, 31, 66, 0.14);
}

.pdca-node small {
  color: #345b85;
  font-size: 12px;
}

.pdca-plan {
  top: 24px;
  left: 50%;
  border-color: #0b3b75;
  transform: translateX(-50%);
}

.pdca-do {
  top: 50%;
  right: 20px;
  border-color: #075fb8;
  transform: translateY(-50%);
}

.pdca-check {
  bottom: 24px;
  left: 50%;
  border-color: #1684d5;
  transform: translateX(-50%);
}

.pdca-act {
  top: 50%;
  left: 20px;
  border-color: #62aee7;
  transform: translateY(-50%);
}

.pdca-arrow {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--blue-deep);
  font-size: 0;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(9, 31, 66, 0.18);
}

.pdca-arrow::after {
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  transform: translateX(-2px) rotate(45deg);
}

.pdca-arrow-1 {
  top: 21%;
  right: 25%;
  transform: rotate(45deg);
}

.pdca-arrow-2 {
  right: 25%;
  bottom: 21%;
  background: #075fb8;
  transform: rotate(135deg);
}

.pdca-arrow-3 {
  bottom: 21%;
  left: 25%;
  background: #1684d5;
  transform: rotate(225deg);
}

.pdca-arrow-4 {
  top: 21%;
  left: 25%;
  background: #62aee7;
  transform: rotate(315deg);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-header.is-open .site-nav {
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2px;
    padding-top: 10px;
  }

  .site-nav > a,
  .nav-group > summary {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 87, 184, 0.1);
  }

  .nav-group > summary::before {
    float: right;
    margin-top: 6px;
    margin-right: 4px;
  }

  .nav-dropdown,
  .nav-dropdown-wide {
    position: static;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: #f1f7fe;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group:not([open]) .nav-dropdown {
    display: none;
  }

  .nav-group[open] .nav-dropdown {
    transform: none;
  }

  .nav-dropdown a {
    padding: 10px 22px;
    font-size: 12px;
  }

  .site-header.is-open .header-actions {
    padding-top: 10px;
  }

  .download-list article,
  .case-list article,
  .seminar-list article {
    grid-template-columns: 120px 1fr;
  }

  .download-list .button,
  .case-list .button,
  .seminar-list .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .child-content-frame-cases {
    height: 1290px;
  }

  .child-content-frame-downloads {
    height: 1290px;
  }

  .shuhari-overview,
  .concept-split,
  .concept-language-card,
  .pdca-layout {
    grid-template-columns: 1fr;
  }

  .shuhari-diagram {
    grid-template-columns: 1fr;
  }

  .shuhari-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -37px;
    transform: translateX(50%) rotate(90deg);
  }

  .hero {
    min-height: auto;
    padding: 116px clamp(18px, 4vw, 36px) 250px;
  }

  .hero-stage {
    right: 0;
    bottom: 286px;
    width: min(48vw, 500px);
    min-height: 240px;
  }

  .hero-content,
  .hero-metrics {
    max-width: 520px;
  }

  .hero-book {
    width: clamp(132px, 14vw, 188px);
  }

  .hero-book-right {
    width: clamp(164px, 18vw, 236px);
  }

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

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

  .service-panel-visual {
    grid-column: 1 / -1;
    min-height: 160px;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .sales-feature-card {
    margin: 28px auto 0;
  }

  .book-list {
    grid-template-columns: 1fr;
  }

  .book-cover {
    justify-self: center;
    width: min(190px, 56vw);
  }

}

@media (max-width: 820px) {
  .brand span {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 116px;
    padding-bottom: 34px;
    background-position: center top;
  }

  .hero::before {
    width: 100%;
    height: 42%;
    opacity: 0.18;
  }

  .hero-stage {
    order: 2;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 380px;
    margin-top: 26px;
    padding-top: 0;
    opacity: 1;
  }

  .hero-content {
    order: 1;
    max-width: none;
  }

  .hero-metrics {
    max-width: none;
  }

  .hero-metrics,
  .reason-list,
  .case-grid,
  .media-grid,
  .page-grid,
  .page-grid-2 {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 112px;
  }

  .concept-hero-card {
    grid-template-columns: 1fr;
  }

  .concept-book-pair {
    width: 188px;
    min-height: 136px;
    margin: 0 auto;
  }

  .info-table dl {
    grid-template-columns: 1fr;
  }

  .info-table dt {
    border-bottom: 0;
  }

  .download-list article,
  .case-list article,
  .seminar-list article,
  .book-card,
  .cta-band,
  .catalog-grid,
  .mission-vision,
  .profile-card,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .download-list .button,
  .case-list .button,
  .seminar-list .button {
    grid-column: auto;
  }

  .language-map {
    grid-template-columns: 1fr;
  }

  .language-map i {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    transform: rotate(135deg);
  }

  .concept-visual-card {
    padding: 22px;
  }

  .catalog-body {
    min-height: auto;
    padding: 22px;
  }

  .catalog-thumb {
    min-height: 150px;
  }

  .mission-vision article {
    min-height: 180px;
  }

  .profile-badge {
    min-height: 520px;
  }

  .profile-portrait {
    right: 4%;
    width: min(82%, 430px);
    max-height: 98%;
  }

  .profile-badge-copy {
    padding: 28px 26px;
  }

  body.page-embed .catalog-grid {
    grid-template-columns: 1fr;
  }

  .need-card {
    min-height: auto;
    padding-left: 82px;
  }

  .pdca-wheel {
    min-height: 390px;
  }

  .pdca-center {
    width: 104px;
    height: 104px;
    font-size: 16px;
  }

  .pdca-node {
    width: 94px;
    min-height: 62px;
    font-size: 14px;
  }

  .pdca-do {
    right: 10px;
  }

  .pdca-act {
    left: 10px;
  }

  .pdca-arrow {
    width: 27px;
    height: 27px;
  }

  .logo-marquee img {
    width: 146px;
    height: 62px;
    padding: 0;
  }

  .service-panel-hero,
  .sales-panel-copy,
  .sales-feature-card {
    grid-template-columns: 1fr;
  }

  .service-panel-icon {
    width: 78px;
    height: 78px;
  }

  .service-panel-copy h3,
  .sales-panel-copy h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .service-mini-card {
    min-height: auto;
  }

  .service-benefits {
    display: grid;
    justify-items: start;
  }

  .service-benefits span {
    width: 100%;
    padding: 0;
    border-right: 0;
  }

  .media-grid {
    grid-template-areas:
      "youtube"
      "note"
      "x";
  }

  .media-tile.youtube {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .media-tile.youtube .youtube-body > span {
    width: 78px;
    height: 78px;
  }

  .news-item {
    grid-template-columns: 110px 92px 1fr;
    gap: 14px;
    padding: 17px 20px;
  }

  .seminar-panel {
    order: 3;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .download-rail article {
    grid-template-columns: 88px 1fr;
  }

  .download-rail img,
  .template-thumb {
    width: 88px;
    height: 118px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    justify-content: center;
    justify-self: center;
  }

  .footer-main-nav,
  .footer-legal-nav {
    justify-content: center;
  }

  .footer-main-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    text-align: left;
  }

  .footer-nav-links {
    grid-column: 1 / -1;
  }

  .footer-nav-group p {
    text-align: left;
  }

  .site-footer small {
    grid-column: auto;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    padding: 8px 14px;
  }

  .brand img {
    width: 50px;
  }

  .site-footer {
    padding: 38px 16px 24px;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-brand img {
    width: 58px;
  }

  .footer-main-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav-links {
    grid-column: auto;
  }

  .footer-nav-group,
  .footer-nav-services,
  .footer-nav-links {
    justify-content: center;
    text-align: center;
  }

  .footer-nav-group p {
    text-align: center;
  }

  .footer-legal-nav {
    gap: 8px 14px;
  }

  .hero {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.2vw, 46px);
    line-height: 1.25;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 310px;
    gap: 12px;
    padding-bottom: 18px;
  }

  .hero-book {
    width: min(45vw, 156px);
  }

  .hero-book-right {
    width: min(52vw, 188px);
  }

  .seminar-panel {
    padding: 16px;
  }

  .section,
  .section-slim {
    padding-inline: 14px;
  }

  .book-card {
    gap: 20px;
    padding: 22px;
  }

  .book-card-copy h3 {
    font-size: 21px;
  }

  .child-content-frame-cases {
    height: 1310px;
  }

  .child-content-frame-downloads {
    height: 1345px;
  }

  .news-board {
    border-radius: 8px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 18px;
  }

  .news-item:hover {
    transform: none;
  }

  .news-item span {
    justify-content: flex-start;
    width: fit-content;
    min-width: 0;
  }

  .service-panel-manual,
  .service-panel-sales,
  .case-grid article,
  .reason-list article {
    padding: 20px;
  }

  .service-panel-hero {
    gap: 18px;
    padding-bottom: 22px;
  }

  .service-panel-visual,
  .service-panel-visual img {
    min-height: 130px;
  }

  .service-card-grid {
    gap: 16px;
    margin-top: 22px;
  }

  .service-mini-card {
    padding: 18px 18px 72px;
  }

  .service-mini-card .service-card-foot {
    min-height: 52px;
    width: 100%;
    margin: 0;
    font-size: 13px;
  }

  .service-primary-link {
    min-height: 56px;
    padding: 12px 24px;
    font-size: 17px;
  }

  .sales-panel-copy {
    gap: 18px;
    padding: 0 0 22px;
  }

  .sales-feature-card {
    margin: 22px auto 0;
    padding: 20px 20px 72px;
  }

  .sales-feature-card .service-card-foot {
    min-height: 52px;
    margin: 0;
    font-size: 13px;
  }

  .case-thumb {
    height: 130px;
    margin: -20px -20px 18px;
    padding: 14px;
  }

  .reason-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }

  .reason-list span {
    top: 20px;
    right: 20px;
    min-height: 32px;
    font-size: 18px;
  }

  .media-tile {
    grid-template-columns: 62px 1fr;
  }

  .media-tile.youtube {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px;
  }

  .media-tile span {
    width: 58px;
    height: 58px;
  }

  .media-cta {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .media-tile.youtube .youtube-body > span {
    width: 62px;
    height: 62px;
  }

  .youtube-body div {
    grid-template-columns: 1fr;
  }

  .media-tile.youtube small,
  .media-tile.youtube .media-cta-youtube {
    grid-column: 1;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-form label:nth-child(3),
  .contact-form label:nth-child(4) {
    grid-column: auto;
  }
}

body.page-embed .case-result-tags,
body.page-embed .document-tags {
  display: none;
}

@media (max-width: 1120px) {
  body:not(.page-embed).seminar-page .seminar-catalog .catalog-card {
    grid-template-columns: 145px minmax(0, 1fr) 180px;
  }

  body:not(.page-embed).seminar-page .seminar-catalog .catalog-body {
    padding: 24px;
  }
}

@media (max-width: 820px) {
  .case-projects-heading,
  .seminar-program-heading,
  .document-library-heading {
    display: grid;
    align-items: start;
  }

  .case-impact-summary {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .case-impact-summary div {
    min-height: 82px;
  }

  body:not(.page-embed).case-page .case-catalog,
  body:not(.page-embed).document-page .download-catalog {
    grid-template-columns: 1fr;
  }

  body:not(.page-embed).document-page .download-catalog .catalog-card:not(.document-featured) {
    min-height: 524px;
  }

  body:not(.page-embed).case-page .case-catalog .case-featured,
  body:not(.page-embed).case-page .case-catalog .catalog-card:last-child,
  body:not(.page-embed).document-page .download-catalog .document-featured {
    display: flex;
    grid-column: auto;
  }

  body:not(.page-embed).case-page .case-catalog .case-featured .catalog-thumb,
  body:not(.page-embed).case-page .case-catalog .catalog-card:last-child .catalog-thumb,
  body:not(.page-embed).document-page .download-catalog .document-featured .catalog-thumb {
    min-height: 220px;
  }

  body:not(.page-embed).seminar-page .seminar-catalog .catalog-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .seminar-entry {
    grid-column: 1 / -1;
    min-height: 70px;
  }

  .seminar-date-block {
    padding: 20px 16px;
  }

  .seminar-date-block time strong {
    font-size: 48px;
  }
}

@media (max-width: 560px) {
  .case-projects-heading,
  .seminar-program-heading,
  .document-library-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .case-impact-summary {
    gap: 8px;
    margin-top: 24px;
  }

  .case-impact-summary div {
    min-height: 72px;
    padding: 14px 16px;
  }

  .case-impact-summary strong {
    font-size: 25px;
  }

  .seminar-topic-list,
  .document-topic-nav {
    gap: 7px;
    margin-top: 22px;
  }

  .seminar-topic-list span,
  .document-topic-nav span {
    padding: 6px 10px;
    font-size: 11px;
  }

  body:not(.page-embed).case-page .case-catalog .catalog-thumb,
  body:not(.page-embed).case-page .case-catalog .case-featured .catalog-thumb,
  body:not(.page-embed).case-page .case-catalog .catalog-card:last-child .catalog-thumb,
  body:not(.page-embed).document-page .download-catalog .catalog-thumb,
  body:not(.page-embed).document-page .download-catalog .document-featured .catalog-thumb {
    min-height: 168px;
  }

  body:not(.page-embed).case-page .case-catalog .catalog-body,
  body:not(.page-embed).case-page .case-catalog .case-featured .catalog-body,
  body:not(.page-embed).document-page .download-catalog .catalog-body,
  body:not(.page-embed).document-page .download-catalog .document-featured .catalog-body {
    min-height: auto;
    padding: 22px;
  }

  body:not(.page-embed).document-page .download-catalog .catalog-card:not(.document-featured) {
    min-height: 510px;
  }

  body:not(.page-embed).seminar-page .seminar-catalog .catalog-card {
    grid-template-columns: 1fr;
  }

  .seminar-date-block {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 92px;
    padding: 16px 20px;
  }

  .seminar-date-block time {
    display: flex;
    gap: 8px;
    align-items: baseline;
  }

  .seminar-date-block time strong {
    margin: 0;
    font-size: 40px;
  }

  .seminar-date-block em {
    margin: 0;
  }

  body:not(.page-embed).seminar-page .seminar-catalog .catalog-body {
    padding: 22px;
  }

  .seminar-entry {
    grid-column: auto;
  }
}
