/* c-logo */
.c-logo {
  position: relative;
}

.c-logo__link {
  display: block;
  position: relative;
  max-width: 210px;
  width: 100%;
}

.c-logo__image {
  width: 100%;
}

/* c-breadcrumb */
.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.c-breadcrumb::-webkit-scrollbar {
  display: none;
}

.c-breadcrumb__item {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1;
  white-space: nowrap;
}

.c-breadcrumb__item--current {
  color: rgba(0, 0, 0, 0.56);
}

.c-breadcrumb__separator {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.56);
  line-height: 1;
}

/* c-nav */
.c-nav {
  display: flex;
  align-items: center;
}

.c-nav__list {
  display: flex;
  list-style: none;
  gap: 0;
}

.c-nav__list li {
  height: 48px;
  display: flex;
  align-items: center;
  position: relative;
}

.c-nav__list li.current-menu-item {
  border-bottom: 1px solid rgba(0, 74, 173, 0.72);
}

.c-nav__list li a {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.c-nav__list li.current-menu-item a {
  color: #004aad;
}

.c-nav__list li a:hover {
  color: #004aad;
}

/* c-hamburger */
.c-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.c-hamburger__line {
  width: 100%;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}

/* c-section-header */
.c-section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-section-header__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin: 0;
}

.c-section-header__subtitle {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #004aad;
  line-height: 1;
}

.c-section-header--center {
  align-items: center;
}

.c-section-header__accent {
  background: #004aad;
  height: 4px;
  border-radius: 2px;
  width: 48px;
}

/* c-grid */
.c-grid {
  display: grid;
  gap: 8px;
}

.c-grid--features {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.c-grid--problems,
.c-grid--services {
  grid-template-columns: repeat(3, 1fr);
  max-width: 800px;
}

.c-grid--solution-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.c-grid--filter {
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
}

.c-grid--case-studies {
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
}

.c-grid--flow {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.c-grid--systems {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  height: 202px;
}

/* c-card */
.c-card {
  min-width: 260px;
  width: auto;
}

/* c-article-header */
.c-article-header {}

.c-article-header__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin-bottom: 16px;
}

.c-article-header__meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.c-article-header__dates {
  display: flex;
  gap: 16px;
}

.c-article-header__date {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1.6;
}

/* c-project-details */
.c-project-details {
  background: #eceef0;
  border-radius: 12px;
  padding: 24px;
}

.c-project-details__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.c-project-details__row:last-child {
  border-bottom: none;
}

.c-project-details__label {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  width: 140px;
  flex-shrink: 0;
}

.c-project-details__value {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #474747;
  line-height: 1.6;
  flex: 1;
}

/* c-content-section */
.c-content-section {
  margin-bottom: 48px;
}

.c-content-section__header {
  margin-bottom: 24px;
}

.c-rte {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.c-rte * {
	max-width: calc(100vw - 32px);
}

.c-rte h2 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  padding-bottom: 16px;
  border-bottom: solid 1px #D8E1EE;
  margin-bottom: 24px;
  padding-top: 24px;
}

.c-rte h3 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-top: 16px;
}

.c-rte h4 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-top: 8px;
}

.c-rte h5 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin-bottom: 24px;
}

.c-rte p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #474747;
  line-height: 1.8;
  margin-bottom: 24px;
}

.c-rte a {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0693E3;
  line-height: 1.8;
  text-decoration: underline;
  margin-bottom: 24px;
}

.c-rte figure {
  padding: 12px;
  border-radius: 12px;
  background: #D8E1EE;
  margin-bottom: 24px;
}

.c-rte img {
  border-radius: 8px;
  width: 100%;
}


.c-rte code {
  display: inline-block;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.95em;
  color: #004aad;
  word-break: break-word;
  background: #eceef0;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 24px;
}

/* c-challenge-box */
.c-rte blockquote {
  background: #eceef0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.c-rte blockquote strong {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin-bottom: 16px;
}

.c-rte blockquote p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #474747;
  line-height: 1.8;
  margin-bottom: 16px;
}

.c-rte blockquote p:last-child {
  margin-bottom: 0;
}

.c-rte ul {
  background: #eceef0;
  border-radius: 12px;
  padding: 24px 24px 24px 32px;
  list-style: disc;
  margin-bottom: 24px;
}

.c-rte ul li {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #474747;
  line-height: 1.8;
  margin-bottom: 8px;
}

.c-rte ul li:last-child {
  margin-bottom: 0;
}

.c-rte :last-child {
  margin-bottom: 0;
}

.c-content-section__note {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #474747;
  line-height: 1.8;
  margin-bottom: 16px;
}

.c-content-section__note p {
  margin-bottom: 16px;
}

.c-content-section__note p:last-child {
  margin-bottom: 0;
}

/* c-link-text */
.c-link-text {
  margin-bottom: 16px;
}

.c-link-text__link {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0693e3;
  line-height: 1.8;
  text-decoration: underline;
}

/* c-eyecatch */
.c-eyecatch {
  background: #d8e1ee;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 48px;
}

.c-eyecatch__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* c-related-service */
.c-related-service {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 0 24px 24px;
}

.c-related-service__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.2;
  margin-top: 24px;
}

/* c-toc */
.c-toc {
  background: #eceef0;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 24px;
}

.c-toc__header {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.c-toc__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.2;
}

.c-toc__toggle {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.3;
  background: none;
  border: none;
  cursor: pointer;
}

.c-toc__list {
  list-style: decimal;
  padding-left: 22.5px;
  margin-bottom: 32px;
}

.c-toc__item {
  margin-bottom: 4px;
}

.c-toc__link {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #474747;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.25);
}

.c-toc__sub {
  list-style: decimal;
  padding-left: 18px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.c-toc__item--sub {
  margin-bottom: 2px;
}

.c-toc__item--sub .c-toc__link {
  font-size: 14px;
  color: #606060;
}

.c-toc__cta {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 16px;
}

.c-toc__cta-text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #474747;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* c-sidebar-sticky */
.c-sidebar-sticky {
  position: sticky;
  top: 24px;
}

/* c-article-list */
.c-article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* c-article-item */
.c-article-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.c-article-item__image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.c-article-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-article-item__content {
  flex: 1;
  padding: 4px 0;
}

.c-article-item__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin-bottom: 8px;
}

.c-article-item__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-article-item__date {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1.6;
}

.c-card__link {
  border: 1px solid rgba(0, 0, 0, 0.27);
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
  min-height: 60px;
  height: 100%;
  width: 100%;
  gap: 8px;
}

.c-card__link:hover {
  background: rgba(0, 74, 173, 0.12);
  color: #004aad;
}

.c-card__text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.c-card__icon {
  width: 16px;
  height: 16px;
  color: #474747;
  transform: scaleY(-1);
  flex-shrink: 0;
}

.c-card:hover .c-card__icon {
  color: #004aad;
}

.l-main--service .c-card__icon,
.l-main--solution .c-card__icon {
  transform: rotate(90deg);
}


.c-case__link {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.c-case__image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.c-case__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-case__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}

.c-case__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3.2em;
	height: 100%;
}

.c-case__company {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #474747;
  line-height: 1.6;
}

/* c-case-list */
.c-case-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.c-article__link {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.c-article__image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.c-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-article__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}

.c-article__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3.2em;
height: 100%;
}

.c-article__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-article__date {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1.6;
}

/* c-tag-list */
.c-tag-list {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

/* c-divider */
.c-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  width: 100%;
}

/* c-solution-card */
.c-solution-card {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
}

.c-solution-card:hover {
  background: rgba(0, 74, 173, 0.08);
}

.c-solution-card--large {
  align-self: start;
}

.c-solution-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: space-between;
}

.c-solution-card__text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #474747;
  line-height: 1.6;
  flex: 1;
}

.c-solution-card:hover .c-solution-card__text {
  color: #004aad;
}

.c-solution-card__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #474747;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.c-solution-card:hover .c-solution-card__link {
  color: #004aad;
}

.c-solution-card__icon {
  width: 16px;
  height: 16px;
  color: currentColor;
  transform: scaleY(-1);
  flex-shrink: 0;
}

.c-solution-card:hover {
  color: #004aad;
}

/* c-document-card */
.c-document-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.c-document-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.c-document-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-document-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.c-document-card__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #474747;
  line-height: 1.6;
}

.c-document-card__cta {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.c-document-card:hover * {
  color: #004aad;
}

/* c-filter-category */
.c-filter-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.c-filter-category__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.4;
}

/* c-filter-tag */
.c-filter-tag {
  border: 1px solid rgba(0, 0, 0, 0.27);
  border-radius: 8px;
  padding: 8px 16px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
  gap: 8px;
}

.c-filter-tag:hover,
.c-filter-tag--active {
  background: #004aad;
  color: #ffffff;
}

.c-filter-tag__text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #474747;
  line-height: 1;
}

.c-filter-tag:hover .c-filter-tag__text,
.c-filter-tag--active .c-filter-tag__text {
  color: #ffffff;
}


.c-featured-image__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

/* c-article-intro */
.c-article-intro {
  background: #eceef0;
  border-radius: 12px;
  padding: 24px;
}

.c-article-intro__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin-bottom: 16px;
}

.c-article-intro__content p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #474747;
  line-height: 1.8;
  margin-bottom: 16px;
}

.c-article-intro__content p:last-child {
  margin-bottom: 0;
}

.c-article-intro__link {
  color: #0693e3;
  text-decoration: underline;
}

/* c-knowledge-article */
.c-knowledge-article {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 20px 0;
}

.c-knowledge-article__image {
  width: 320px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.c-knowledge-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-knowledge-article__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.c-knowledge-article__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
}

.c-knowledge-article__excerpt {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #474747;
  line-height: 1.6;
}

.c-knowledge-article__meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.c-knowledge-article__date {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1.6;
}

.c-knowledge-article:hover .c-knowledge-article__title {
  color: #004aad;
}

/* c-knowledge-list */
.c-knowledge-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* c-tag */
.c-tag {
  border: 1px solid rgba(0, 0, 0, 0.27);
  border-radius: 4px;
  padding: 8px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #474747;
  line-height: 1;
  white-space: nowrap;
}

.c-tag--active {
  background: #004aad;
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.27);
}

/* c-pagination */
.c-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}


.c-pagination .page-numbers {
  background: none;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.c-pagination .page-numbers.current {
  background: #004aad;
  color: #eceef0;
}

.c-pagination .page-numbers:hover:not(.c-pagination .page-numbers.current) {
  background: rgba(0, 74, 173, 0.1);
}

.c-pagination .page-numbers.prev,
.c-pagination .page-numbers.next {
  width: 32px;
  height: 32px;
  background: none;
  border: solid 1px #474747;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}



/* c-cta-block */
.c-cta-block {}

.c-cta-block__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin-bottom: 8px;
}

.c-cta-block__text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.4;
  margin-bottom: 24px;
	font-feature-settings: "palt";
}

/* c-button */
.c-button {
  width: auto;
}

.c-button--mini {
  text-align: center;
}

.c-button.c-button--download {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-button--fullWidth {
  margin-top: 16px;
}

.c-button__inner {
  display: inline-flex;
  padding: 20px 40px;
  background: #004aad;
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.c-button__inner:hover {
  background: #003d8c;
}

.c-button--fullWidth .c-button__inner {
  width: 100%;
  justify-content: center;
}

.c-button--mini .c-button__inner {
  display: inline-flex;
  padding: 20px 40px;
  background: #004aad;
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  margin: 0 auto;
}

.c-button__icon {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.c-button--mini .c-button__icon {
  transform: rotate(90deg);
}

/* TOC toggle: hide list when collapsed */
.c-toc.collapsed .c-toc__list {
  display: none;
}

/* c-service-detail-link */
.c-service-detail-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #474747;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.c-service-detail-link:hover {
  color: #004aad;
}

.c-service-detail-link__icon {
  width: 16px;
  height: 16px;
  color: currentColor;
  flex-shrink: 0;
}

.c-service-detail-link:hover .c-service-detail-link__icon {
  color: #004aad;
}

/* c-footer-nav */
.c-footer-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-footer-nav__list {
  display: flex;
  list-style: none;
  gap: 2px;
}

.c-footer-nav__list .menu-item {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 18px;
  height: 12px;
  display: flex;
  align-items: center;
}

.c-footer-nav__list .menu-item:last-child {
  border-right: none;
}

.c-footer-nav__list .menu-item a {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1;
  white-space: nowrap;
}

/* c-copyright */
.c-copyright {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: 1.6;
  text-align: center;
}

/* c-resource-title */
.c-resource-title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* c-resource-image */
.c-resource-image {
  width: 100%;
  aspect-ratio: 493.5/276;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 24px;
}

.c-resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* c-resource-details */
.c-resource-details {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* c-resource-section */
.c-resource-section__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.4;
  margin-bottom: 8px;
}

.c-resource-section__content p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #474747;
  line-height: 1.6;
}

/* c-recommendation-box */
.c-recommendation-box {
  background: #eceef0;
  border-radius: 12px;
  padding: 16px 24px;
}

.c-recommendation-box__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.4;
  margin-bottom: 8px;
}

.c-recommendation-box__list {
  list-style: disc;
  padding-left: 21px;
  margin: 0;
}

.c-recommendation-box__list li {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #474747;
  line-height: 1.6;
  margin-bottom: 0;
}

/* c-download-form */
.c-download-form {
  background: #eceef0;
  border-radius: 12px;
  padding: 24px;
  width: 530px;
  flex-shrink: 0;
}

.c-download-form__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.2;
  margin-bottom: 8px;
}

.c-download-form__description {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #474747;
  line-height: 1.6;
  margin-bottom: 24px;
}

.c-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-form__label {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #474747;
  line-height: 1.6;
}

.c-form__required {
  color: #e73928;
}

.c-form__input {
  width: 100%;
  height: 50px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 12px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #474747;
  line-height: 1.6;
}

.c-form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.c-form__checkbox-input {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  flex-shrink: 0;
}

.c-form__checkbox-label {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #474747;
  line-height: 1;
  flex: 1;
}

.c-form__link {
  color: #004aad;
  text-decoration: underline;
}

/* c-contact-description */
.c-contact-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-contact-description p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #474747;
  line-height: 1.6;
}

/* c-contact-form */
.c-contact-form {
  background: #eceef0;
  border-radius: 12px;
  padding: 24px;
  max-width: 530px;
  flex-shrink: 0;
}

article .c-contact-form {
  max-width: 100%;
}

.c-contact-form.c-contact-form--full {
  max-width: 100%;
  padding: 40px;
}

.c-contact-form__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.2;
  margin-bottom: 8px;
}

.c-contact-form__description {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #474747;
  line-height: 1.6;
  margin-bottom: 24px;
}

.c-contact-form.c-contact-form--full .c-contact-form__title {
  font-size: 24px;
  margin-bottom: 16px;
}

.c-contact-form.c-contact-form--full .c-contact-form__description {
  font-size: 15px;
}

/* c-case-study */
.c-case-study {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-case-study__image {
  width: 100%;
  aspect-ratio: 800/450;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.c-case-study__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-case-study__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-case-study__company {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #474747;
  line-height: 1.6;
}

.c-case-study__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
}

.c-case-study:hover .c-case-study__company,
.c-case-study:hover .c-case-study__title {
  color: #004aad;
}

/* c-form */
.c-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-form__label {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #474747;
  line-height: 1.6;
}

.c-form__required {
  color: #e73928;
}

.c-form__input {
  width: 100%;
  height: 50px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 12px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #474747;
  line-height: 1.6;
}

.c-form__textarea {
  width: 100%;
  min-height: 200px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 12px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #474747;
  line-height: 1.6;
  resize: vertical;
}

.c-form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.c-form__checkbox-input {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  flex-shrink: 0;
}

.c-form__checkbox-label {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #474747;
  line-height: 1;
  flex: 1;
}

.c-form__link {
  color: #004aad;
  text-decoration: underline;
}

/* c-feature-card */
.c-feature-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-feature-card__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-feature-card__number {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #004aad;
  line-height: 1.6;
}

.c-feature-card__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
}

.c-feature-card__content {
  flex: 1;
}

.c-feature-card__content p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #474747;
  line-height: 1.8;
}

/* c-system-card */
.c-system-card {
  border: 1px solid rgba(0, 0, 0, 0.27);
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.c-system-card__text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

/* c-strength-card */
.c-strength-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-strength-card__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
}

.c-strength-card__content p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #474747;
  line-height: 1.8;
  margin-bottom: 0;
}

.c-strength-card__content p:last-child {
  margin-bottom: 0;
}

/* c-use-case-card */
.c-use-case-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-use-case-card__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
}

.c-use-case-card__content p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #474747;
  line-height: 1.8;
}

/* c-step-card */
.c-step-card {
  background: #eceef0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  height: 100%;
}

.c-step-card__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-step-card__number {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #004aad;
  line-height: 1.6;
}

.c-step-card__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.6;
}

.c-step-card__content p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #474747;
  line-height: 1.8;
  margin-bottom: 0;
}

.c-step-card__content p:last-child {
  margin-bottom: 0;
}

/* c-flow-arrow */
.c-flow-arrow {
  height: 32px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-flow-arrow__icon {
  width: 100%;
  height: auto;
}

/* c-lab-image */
.c-lab-image {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.c-lab-image img {
  width: 100%;
  object-fit: cover;
}

/* c-service-card */
.c-service-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
	margin-top: 24px;
}

.c-service-card__image {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.c-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-service-card__content {
  flex: 1;
  padding: 8px 0;
}

.c-service-card__title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.2;
  margin-bottom: 8px;
}

.c-service-card__description {
  margin-bottom: 24px;
}

.c-service-card__description p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #474747;
  line-height: 1.6;
  margin-bottom: 8px;
}

.c-service-card__description p:last-child {
  margin-bottom: 0;
}


@media (max-width: 767px) {

  .c-section-header__title {
    font-size: 24px;
  }

  .c-section-header__subtitle {
    font-size: 14px;
  }

  .c-grid--case-studies {
    gap: 32px 16px;
  }

  .c-case-study {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    gap: 20px;
  }

  .c-case-study__title {
    font-size: 18px;
  }

  .c-case-study__company {
    font-size: 14px;
  }

  .p-case-grid {
    padding: 20px 0 60px;
  }

  .c-grid--features {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .c-grid--systems {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 12px;
  }

  .c-grid--flow {
    flex-direction: column;
    gap: 20px;
  }

  .c-grid--other-services {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    gap: 12px;
  }

  .c-feature-card__title {
    font-size: 18px;
  }

  .c-feature-card__content p {
    font-size: 14px;
  }

  .c-feature-card__number {
    margin-bottom: -24px;
  }

  .c-system-card {
    padding: 12px 16px;
  }

  .c-system-card__text {
    font-size: 14px;
    white-space: normal;
  }

  .c-flow-arrow {
    transform: rotate(90deg);
    height: 16px;
    width: 32px;
  }

  .c-step-card {
    padding: 20px;
  }

  .c-step-card__title {
    font-size: 18px;
  }

  .c-step-card__content p {
    font-size: 14px;
  }

  .c-use-case-card {
    padding: 24px;
  }

  .c-use-case-card__title {
    font-size: 20px;
  }

  .c-use-case-card__content p {
    font-size: 14px;
  }

  .c-contact-form {
    padding: 20px;
    width: 100%;
  }

  .c-contact-form__title {
    font-size: 18px;
  }

  .c-contact-form__description {
    font-size: 11px;
  }

  .c-form {
    gap: 12px;
  }

  .c-form__input,
  .c-form__textarea {
    height: 44px;
    padding: 10px;
    font-size: 14px;
  }

  .c-form__textarea {
    min-height: 120px;
  }

  .c-form__label {
    font-size: 14px;
  }

  .c-logo__link {
    max-width: 160px;
  }

  .c-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .c-nav.open {
    display: flex;
  }

  .c-nav__list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    ;
  }

  .c-nav__list li {
    border-bottom: 1px solid #e0e0e0;
  }

  .c-nav__list li:last-child {
    border-bottom: none;
  }

  .c-nav__list li a {
    display: block;
    padding: 16px;
    color: inherit;
    text-decoration: none;
    width: 100%;
  }

  .c-hamburger {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .c-hamburger.is-active .c-hamburger__line:nth-child(2) {
    opacity: 0;
  }

  .c-hamburger.is-active .c-hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .c-nav {
    display: none;
  }

  .c-hamburger {
    display: flex;
  }

  .c-grid--solution-cards,
  .c-grid--large-cards,
  .c-grid--legacy-cards,
  .c-grid--development-cards,
  .c-grid--problems,
  .c-grid--services {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
    height: auto;
    gap: 12px;
  }

  .c-document-card {
    padding: 20px;
    gap: 16px;
  }

  .c-document-card__title {
    font-size: 18px;
  }

  .c-card__link {
    padding: 20px;
  }

  .c-card__text {
    font-size: 14px;
  }

  .c-case__title,
  .c-article__title {
    font-size: 16px;
  }

  .c-case__link,
  .c-article__link {
    gap: 12px;
  }

  .c-grid--filter {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 12px;
  }

  .c-filter-category__title {
    font-size: 16px;
  }

  .c-filter-tag {
    padding: 12px;
  }

  .c-filter-tag__text {
    font-size: 13px;
    white-space: normal;
  }

  .c-knowledge-article {
    gap: 16px;
  }

  .c-knowledge-article__image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
  }

  .c-knowledge-article__title {
    font-size: 18px;
  }

  .c-knowledge-article__excerpt {
    display: none;
  }

  .c-knowledge-article__meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .c-knowledge-article__date {
    font-size: 13px;
  }

  .c-pagination {
    gap: 16px;
  }

  .c-pagination__arrow-icon {
    width: 28px;
    height: 28px;
  }

  .c-pagination__number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .p-cta {
    padding: 60px 0;
  }

  .p-cta__content {
    flex-direction: column;
    gap: 40px;
  }

  .c-cta-block__title {
    font-size: 20px;
  }

  .c-button__inner {
    padding: 16px 32px;
    font-size: 14px;
  }

  .c-footer-nav__list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .c-footer-nav__list .menu-item {
    padding: 0 12px;
    margin: 4px 0;
  }

  .c-solution-card {
    padding: 16px;
  }

  .c-solution-card__text {
    font-size: 14px;
  }

  .c-article-header__title {
    font-size: 24px;
  }

  .c-article-header__meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .c-project-details__row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .c-project-details__label {
    width: 100%;
    font-size: 14px;
  }

  .c-project-details__value {
    font-size: 14px;
  }

  .c-content-section__title {
    font-size: 20px;
  }

  .c-content-section__text {
    font-size: 14px;
  }

  .c-content-section__note {
    font-size: 14px;
  }

  /* Service card adjustments */
  .c-service-card {
    flex-direction: column;
    gap: 16px;
  }

  .c-service-card__image {
    width: 100%;
    height: 200px;
    align-self: stretch;
  }

  .c-toc {
    position: static;
  }

  .c-toc__header {
    justify-content: center;
  }

  .c-toc__title {
    font-size: 18px;
  }

  .c-resource-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .c-resource-details {
    padding: 20px;
    gap: 20px;
  }

  .c-resource-section__title {
    font-size: 16px;
  }

  .c-resource-section__content p {
    font-size: 13px;
  }

  .c-recommendation-box {
    padding: 16px 20px;
  }

  .c-recommendation-box__title {
    font-size: 16px;
  }

  .c-recommendation-box__list li {
    font-size: 13px;
  }

  .c-download-form {
    width: 100%;
    padding: 20px;
  }

  .c-download-form__title {
    font-size: 18px;
  }

  .c-download-form__description {
    font-size: 11px;
  }

  .c-form__input {
    height: 44px;
    padding: 10px;
    font-size: 14px;
  }

  .c-form__label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .c-grid--systems {
    grid-template-columns: 1fr;
  }

  .c-system-card {
    padding: 12px;
  }

  .c-contact-form {
    padding: 16px;
  }

  .c-use-case-card {
    padding: 16px;
  }

  .c-step-card {
    padding: 16px;
  }

  .c-section-header__title {
    font-size: 24px;
  }

  .c-grid--problems,
  .c-grid--services {
    gap: 8px;
  }

  .c-card__link {
    padding: 20px;
  }

  .c-case,
  .c-article {
    gap: 12px;
  }

  .c-button__inner {
    padding: 14px 28px;
    font-size: 13px;
  }

  .c-solution-card {
    padding: 12px 16px;
  }

  .c-document-card {
    padding: 16px;
    gap: 12px;
  }

  .c-document-card__title {
    font-size: 16px;
  }

  .c-resource-title {
    font-size: 18px;
  }

  .c-resource-details {
    padding: 16px;
    gap: 16px;
  }

  .c-download-form {
    padding: 16px;
  }

  .c-download-form__title {
    font-size: 16px;
  }

  .c-contact-form {
    padding: 16px;
  }

  .c-contact-form__title {
    font-size: 16px;
  }

  .c-form__input,
  .c-form__textarea {
    font-size: 13px;
  }

  .c-form__textarea {
    min-height: 100px;
  }

  .c-grid--filter {
    gap: 8px;
  }

  .c-filter-tag {
    padding: 16px 12px;
  }

  .c-knowledge-article {
    gap: 12px;
    padding: 0 0 12px 0;
  }

  .c-pagination {
    gap: 12px;
  }

  .c-pagination__arrow-icon {
    width: 24px;
    height: 24px;
  }

  .c-pagination__number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .c-filter-tag {
    padding: 16px 12px;
  }

  .c-knowledge-article {
    gap: 12px;
    padding: 0 0 12px 0;
  }

  .c-pagination {
    gap: 12px;
  }

  .c-pagination__arrow-icon {
    width: 24px;
    height: 24px;
  }

  .c-pagination__number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .c-section-header__title--filter {
    font-size: 20px;
  }

  .c-knowledge-article__title {
    font-size: 16px;
  }

  .c-case-study {
    padding: 16px;
    gap: 16px;
  }

  .c-grid--case-studies {
    grid-template-columns: 1fr;
  }
}