:root {
  --javi-navy: #071d49;
  --javi-navy-deep: #001943;
  --javi-blue: #0047b6;
  --javi-blue-strong: #003f9f;
  --javi-blue-soft: #eef6ff;
  --javi-blue-line: #d6e5f5;
  --javi-text: #0a234d;
  --javi-muted: #4d5d78;
  --javi-white: #ffffff;
  --javi-surface: #f5f9fd;
  --javi-radius-sm: 6px;
  --javi-radius-md: 8px;
  --javi-shadow-card: 0 16px 40px rgba(7, 29, 73, 0.08);
  --javi-container: 1180px;
  --javi-font: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  --javi-motion-fast: 160ms;
  --javi-motion-base: 220ms;
  --javi-motion-enter: 520ms;
  --javi-motion-enter-long: 680ms;
  --javi-motion-stagger: 90ms;
  --javi-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --javi-ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --javi-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --javi-reveal-y: 16px;
  --javi-reveal-y-small: 8px;
  --javi-hover-y: -3px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--javi-white);
  color: var(--javi-text);
  font-family: var(--javi-font);
  font-size: 16px;
  line-height: 1.8;
}

body,
button,
input,
select,
textarea {
  font-family: var(--javi-font);
}

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

a:hover {
  color: var(--javi-blue);
}

img,
svg {
  max-width: 100%;
}

.wp-site-blocks {
  background: var(--javi-white);
}

.wp-site-blocks > .wp-block-template-part,
.wp-site-blocks > main,
.wp-site-blocks > footer {
  margin-block-start: 0;
  margin-block-end: 0;
}

.javi-container {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: var(--javi-container);
  padding-inline: 32px;
  width: 100%;
}

.javi-site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--javi-blue-line);
  position: relative;
  z-index: 20;
}

.javi-header__inner {
  align-items: center;
  display: flex;
  gap: 34px;
  min-height: 92px;
}

.javi-logo {
  align-items: center;
  color: var(--javi-navy);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 14px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.javi-logo__mark {
  color: var(--javi-blue);
  display: block;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.javi-logo__image {
  display: block;
  height: auto;
  width: 236px;
}

.javi-logo__image--footer {
  width: 220px;
}

.javi-nav {
  align-items: stretch;
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  margin-left: auto;
}

.javi-nav__link {
  align-items: center;
  border-bottom: 3px solid transparent;
  color: var(--javi-navy);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  min-height: 92px;
  padding: 0 18px;
  transition: border-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.javi-nav__link:hover,
.javi-front-page .javi-nav__link--home,
.javi-page-services .javi-nav__link--services,
.javi-page-company .javi-nav__link--company,
.javi-page-contact .javi-nav__link--contact {
  border-bottom-color: var(--javi-blue);
  color: var(--javi-blue);
}

.javi-header__cta,
.javi-button {
  align-items: center;
  background: linear-gradient(135deg, var(--javi-blue), var(--javi-blue-strong));
  border: 1px solid var(--javi-blue);
  border-radius: var(--javi-radius-sm);
  box-shadow: 0 12px 24px rgba(0, 71, 182, 0.22);
  color: var(--javi-white);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  line-height: 1.1;
  min-height: 52px;
  padding: 0 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.javi-header__cta:hover,
.javi-button:hover {
  background: var(--javi-navy);
  box-shadow: 0 14px 28px rgba(0, 25, 67, 0.24);
  color: var(--javi-white);
  transform: translateY(-1px);
}

.javi-logo:focus,
.javi-nav__link:focus,
.javi-header__cta:focus,
.javi-breadcrumb a:focus,
.javi-footer__menu a:focus,
.javi-back-to-top:focus {
  outline: none;
}

.javi-logo:focus-visible,
.javi-nav__link:focus-visible,
.javi-header__cta:focus-visible,
.javi-breadcrumb a:focus-visible,
.javi-footer__menu a:focus-visible,
.javi-back-to-top:focus-visible {
  border-radius: var(--javi-radius-sm);
  outline: 2px solid rgba(0, 71, 182, 0.48);
  outline-offset: 4px;
}

.javi-button--light {
  background: var(--javi-white);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  color: var(--javi-blue);
}

.javi-button--light:hover {
  background: #eaf3ff;
  color: var(--javi-blue);
}

.javi-button__icon {
  height: 20px;
  width: 20px;
}

.javi-main {
  background: var(--javi-white);
}

.javi-page-hero {
  background:
    linear-gradient(110deg, rgba(245, 249, 253, 0.97) 0%, rgba(245, 249, 253, 0.97) 42%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, #edf6ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--javi-blue-line);
  overflow: hidden;
}

.javi-page-hero__inner {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: 380px;
  overflow: hidden;
}

.javi-page-hero__content {
  align-self: center;
  padding: 68px 0;
  position: relative;
  z-index: 2;
}

.javi-breadcrumb {
  align-items: center;
  color: var(--javi-blue);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  gap: 9px;
  margin-bottom: 36px;
}

.javi-breadcrumb span:last-child {
  color: var(--javi-muted);
}

.javi-page-hero h1,
.javi-home-hero h1 {
  color: var(--javi-navy);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.18;
  margin: 0;
}

.javi-page-hero p,
.javi-home-hero p {
  color: var(--javi-text);
  font-size: 19px;
  font-weight: 500;
  line-height: 2;
  margin: 28px 0 0;
}

.javi-page-hero__media {
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.javi-page-hero__media::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(135deg, #cfe5f8 0%, #f7fbff 38%, #8fbde6 100%);
  content: "";
  inset: 0 -64px 0 0;
  position: absolute;
}

.javi-page-hero__media::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.22) 38%, rgba(255, 255, 255, 0) 72%);
  border-radius: 0;
  content: "";
  inset: 0;
  opacity: 0.82;
  position: absolute;
}

.javi-page-hero--services .javi-page-hero__media::before {
  background: url("../images/hero-services-consulting.webp") center right / cover no-repeat;
}

.javi-page-hero--company .javi-page-hero__media::before {
  background: url("../images/hero-company-city.webp") center right / cover no-repeat;
}

.javi-page-hero--contact .javi-page-hero__media::before {
  background: url("../images/hero-contact-support.webp") center right / cover no-repeat;
}

.javi-home-hero {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 47%, rgba(255, 255, 255, 0) 47%),
    linear-gradient(135deg, #f4f9ff 0%, #ffffff 45%, #cce3f8 100%);
  overflow: hidden;
}

.javi-home-hero .javi-container {
  max-width: 1360px;
}

.javi-home-hero__inner {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 1fr);
  min-height: 540px;
}

.javi-home-hero h1 {
  font-size: clamp(42px, 4.85vw, 58px);
  letter-spacing: 0;
  max-width: 560px;
}

.javi-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.javi-button--outline {
  background: var(--javi-white);
  border-color: #9bb7dc;
  box-shadow: none;
  color: var(--javi-blue);
}

.javi-home-hero__media {
  aspect-ratio: 1.24 / 1;
  background: url("../images/hero-home-consulting.webp") center right / cover no-repeat;
  border-radius: 0 0 0 96px;
  min-height: 410px;
  overflow: hidden;
  position: relative;
}

.javi-home-hero__media::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  content: "";
  inset: 0;
  position: absolute;
}

@media (min-width: 981px) {
  .javi-home-hero__media {
    min-height: 540px;
  }

  .javi-home-hero__actions .javi-button:first-child {
    box-shadow: 0 16px 32px rgba(0, 71, 182, 0.25);
    font-size: 16px;
    min-height: 58px;
    padding-inline: 30px;
  }

  .javi-home-hero__actions .javi-button--outline {
    box-shadow: none;
    min-height: 56px;
    padding-inline: 28px;
  }
}

.javi-section {
  padding: 76px 0;
}

.javi-section--soft {
  background: linear-gradient(180deg, #f3f8fe 0%, #ffffff 100%);
}

.javi-section__heading {
  color: var(--javi-navy);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin: 0 0 16px;
  text-align: center;
}

.javi-section__lead {
  color: var(--javi-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.javi-section__eyebrow {
  color: var(--javi-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  margin: 0 0 12px;
  text-align: center;
}

.javi-section__eyebrow--left {
  text-align: left;
}

.javi-section--compact {
  padding-top: 42px;
}

.javi-icon-mask {
  background: currentColor;
  display: inline-block;
  flex: 0 0 auto;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.javi-home-png-icon {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.javi-trust-strip {
  background: linear-gradient(180deg, #f6fbff 0%, #eff7ff 100%);
  border-bottom: 1px solid var(--javi-blue-line);
  border-top: 1px solid var(--javi-blue-line);
}

.javi-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.javi-trust-item {
  align-items: center;
  color: var(--javi-blue);
  display: grid;
  gap: 24px;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 190px;
  padding: 24px 28px;
}

.javi-trust-item + .javi-trust-item {
  border-left: 1px solid var(--javi-blue-line);
}

.javi-trust-item__icon {
  height: 150px;
  justify-self: center;
  width: 150px;
}

.javi-trust-item h2 {
  color: var(--javi-navy);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin: 0;
}

.javi-trust-item p {
  color: var(--javi-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  margin: 6px 0 0;
}

.javi-home-about {
  padding-bottom: 56px;
}

.javi-service-grid {
  display: grid;
  gap: 24px;
}

.javi-service-grid--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.javi-service-card {
  align-items: center;
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  color: var(--javi-blue);
  display: grid;
  gap: 24px;
  grid-template-columns: 150px minmax(0, 1fr) 18px;
  min-height: 220px;
  padding: 30px 26px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.javi-service-card:hover {
  border-color: #8bb4e4;
  box-shadow: var(--javi-shadow-card);
  color: var(--javi-blue);
  transform: translateY(-2px);
}

.javi-service-card__icon {
  height: 150px;
  width: 150px;
}

.javi-service-card h3,
.javi-feature-card h3,
.javi-flow-item h3,
.javi-job-card h3 {
  color: var(--javi-navy);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.45;
  margin: 0;
}

.javi-service-card h3 {
  font-size: 22px;
}

.javi-service-card p,
.javi-feature-card p,
.javi-flow-item p,
.javi-job-card p {
  color: var(--javi-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
  margin: 8px 0 0;
}

.javi-card-arrow {
  color: var(--javi-blue);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.javi-strength-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.javi-feature-card {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  color: var(--javi-blue);
  min-height: 310px;
  padding: 30px 26px;
  text-align: center;
}

.javi-feature-card__icon {
  height: 150px;
  margin: 0 auto 18px;
  width: 150px;
}

.javi-feature-card h3 {
  font-size: 18px;
}

.javi-split-layout {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.45fr);
}

.javi-split-heading {
  color: var(--javi-navy);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin: 0 0 26px;
}

.javi-flow-list {
  display: grid;
  gap: 12px;
}

.javi-flow-item {
  align-items: center;
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  color: var(--javi-blue);
  display: grid;
  gap: 16px;
  grid-template-columns: 52px 150px minmax(0, 1fr);
  min-height: 182px;
  padding: 16px 18px;
  position: relative;
}

.javi-flow-item + .javi-flow-item::before {
  color: var(--javi-blue);
  content: "⌄";
  font-size: 18px;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: -16px;
  transform: translateX(-50%);
}

.javi-flow-item__number {
  align-items: center;
  background: var(--javi-blue);
  border-radius: 50%;
  color: var(--javi-white);
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.javi-flow-item__icon {
  height: 150px;
  width: 150px;
}

.javi-flow-item h3 {
  font-size: 16px;
}

.javi-flow-item p {
  font-size: 13px;
  margin-top: 2px;
}

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

.javi-job-card {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  color: var(--javi-blue);
  min-height: 282px;
  padding: 24px 16px 22px;
  text-align: center;
}

.javi-job-card__icon {
  height: 150px;
  margin: 0 auto 16px;
  width: 150px;
}

.javi-job-card h3 {
  font-size: 22px;
}

.javi-job-card p {
  font-size: 13px;
  line-height: 1.65;
}

@media (min-width: 981px) {
  .javi-home-flow-jobs .javi-split-layout {
    align-items: start;
    gap: 52px;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.45fr);
  }

  .javi-flow-column,
  .javi-jobs-column {
    display: flex;
    flex-direction: column;
  }

  .javi-home-flow-jobs .javi-split-heading {
    margin-bottom: 24px;
  }

  .javi-home-flow-jobs .javi-flow-list {
    gap: 16px;
  }

  .javi-home-flow-jobs .javi-flow-item {
    gap: 14px;
    grid-template-columns: 46px 132px minmax(0, 1fr);
    min-height: 160px;
    padding: 14px 18px;
  }

  .javi-home-flow-jobs .javi-flow-item + .javi-flow-item::before {
    top: -26px;
  }

  .javi-home-flow-jobs .javi-flow-item__icon {
    height: 132px;
    width: 132px;
  }

  .javi-home-flow-jobs .javi-job-grid {
    gap: 20px;
  }

  .javi-home-flow-jobs .javi-job-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 334px;
    padding: 28px 18px 24px;
  }

  .javi-home-flow-jobs .javi-job-card__icon {
    margin-bottom: 18px;
  }
}

.javi-company-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  margin-top: 34px;
}

.javi-company-table {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-collapse: separate;
  border-radius: var(--javi-radius-md);
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
}

.javi-company-table th,
.javi-company-table td {
  border-bottom: 1px solid var(--javi-blue-line);
  color: var(--javi-text);
  font-size: 14px;
  line-height: 1.7;
  padding: 16px 22px;
  text-align: left;
  vertical-align: top;
}

.javi-company-table tr:last-child th,
.javi-company-table tr:last-child td {
  border-bottom: 0;
}

.javi-company-table th {
  background: #f0f6fd;
  color: var(--javi-navy);
  font-weight: 900;
  width: 145px;
}

.javi-company-table td {
  background: var(--javi-white);
  font-weight: 600;
}

.javi-map-card {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  overflow: hidden;
}

.javi-map-visual {
  background:
    linear-gradient(90deg, rgba(0, 71, 182, 0.06) 0 2px, transparent 2px 70px),
    linear-gradient(0deg, rgba(0, 71, 182, 0.06) 0 2px, transparent 2px 54px),
    linear-gradient(135deg, transparent 0 47%, rgba(0, 71, 182, 0.16) 47% 49%, transparent 49%),
    linear-gradient(45deg, transparent 0 56%, rgba(0, 71, 182, 0.12) 56% 58%, transparent 58%),
    #eef4f9;
  height: 190px;
  position: relative;
}

.javi-map-frame {
  display: block;
  height: 100%;
  width: 100%;
}

.javi-map-pin {
  color: var(--javi-blue);
  height: 70px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -58%);
  width: 70px;
}

.javi-map-card__body {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 22px 28px;
}

.javi-map-card__icon {
  color: var(--javi-blue);
  height: 150px;
  width: 150px;
}

.javi-map-card__body p {
  color: var(--javi-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  margin: 0;
}

.javi-service-detail-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 62px;
}

.javi-service-detail-card {
  align-items: start;
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  color: var(--javi-blue);
  display: grid;
  gap: 28px;
  grid-template-columns: 150px minmax(0, 1fr) 18px;
  min-height: 330px;
  padding: 42px 34px 38px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.javi-service-detail-card:hover {
  border-color: #8bb4e4;
  box-shadow: var(--javi-shadow-card);
  color: var(--javi-blue);
  transform: translateY(-2px);
}

.javi-service-detail-card__icon {
  height: 150px;
  margin-top: 2px;
  width: 150px;
}

.javi-service-detail-card h3 {
  color: var(--javi-navy);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin: 0;
}

.javi-service-detail-card p {
  color: var(--javi-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  margin: 14px 0 22px;
}

.javi-service-detail-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.javi-service-detail-card li {
  color: var(--javi-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}

.javi-service-detail-card li::before {
  background: var(--javi-blue);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.78em;
  width: 6px;
}

.javi-services-jobs {
  background: linear-gradient(180deg, #eef7ff 0%, #f4faff 100%);
  border-bottom: 1px solid var(--javi-blue-line);
  border-top: 1px solid var(--javi-blue-line);
}

.javi-service-job-row {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 38px;
}

.javi-service-job-card {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  color: var(--javi-blue);
  min-height: 276px;
  padding: 22px 13px 20px;
  text-align: center;
}

.javi-service-job-card__icon {
  height: 150px;
  margin: 0 auto 14px;
  width: 150px;
}

.javi-service-job-card h3 {
  color: var(--javi-navy);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin: 0;
}

.javi-service-job-card p {
  color: var(--javi-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
  margin: 8px 0 0;
}

.javi-services-flow-section {
  padding-bottom: 34px;
}

.javi-services-flow-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.javi-services-flow-card {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  color: var(--javi-blue);
  min-height: 296px;
  padding: 34px 18px 24px;
  position: relative;
  text-align: center;
}

.javi-services-flow-card:not(:last-child)::after {
  background: var(--javi-blue);
  clip-path: polygon(0 24%, 62% 24%, 62% 0, 100% 50%, 62% 100%, 62% 76%, 0 76%);
  content: "";
  height: 26px;
  opacity: 0.28;
  position: absolute;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}

.javi-services-flow-card__number {
  align-items: center;
  background: var(--javi-blue);
  border-radius: 50%;
  color: var(--javi-white);
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 22px;
  width: 46px;
}

.javi-services-flow-card__icon {
  height: 150px;
  margin: 0 auto 18px;
  width: 150px;
}

.javi-services-flow-card h3 {
  color: var(--javi-navy);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin: 0;
}

.javi-services-flow-card p {
  color: var(--javi-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  margin: 10px 0 0;
}

.javi-company-about-section {
  padding-bottom: 66px;
}

.javi-company-about-grid {
  align-items: center;
  display: grid;
  gap: 74px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
}

.javi-company-about-copy h2 {
  color: var(--javi-navy);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin: 0 0 28px;
}

.javi-company-about-copy p {
  color: var(--javi-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 2.2;
  margin: 0 0 18px;
}

.javi-company-about-image {
  border-radius: var(--javi-radius-md);
  margin: 0;
  overflow: hidden;
}

.javi-company-about-image img {
  aspect-ratio: 1.65 / 1;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.javi-company-values-section {
  background: linear-gradient(180deg, #eef7ff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--javi-blue-line);
  border-top: 1px solid var(--javi-blue-line);
}

.javi-company-values-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.javi-company-value-card {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  color: var(--javi-blue);
  min-height: 318px;
  padding: 30px 30px 32px;
  text-align: center;
}

.javi-company-value-card__icon {
  height: 150px;
  margin: 0 auto 18px;
  width: 150px;
}

.javi-company-value-card h3 {
  color: var(--javi-navy);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin: 0;
}

.javi-company-value-card p {
  color: var(--javi-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.95;
  margin: 14px 0 0;
}

.javi-company-overview-section {
  padding-bottom: 52px;
}

.javi-company-overview-table {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-collapse: separate;
  border-radius: var(--javi-radius-md);
  border-spacing: 0;
  margin-top: 34px;
  overflow: hidden;
  width: 100%;
}

.javi-company-overview-table th,
.javi-company-overview-table td {
  border-bottom: 1px solid var(--javi-blue-line);
  color: var(--javi-text);
  font-size: 15px;
  line-height: 1.7;
  padding: 16px 34px;
  text-align: left;
  vertical-align: top;
}

.javi-company-overview-table tr:last-child th,
.javi-company-overview-table tr:last-child td {
  border-bottom: 0;
}

.javi-company-overview-table th {
  background: #f0f6fd;
  color: var(--javi-navy);
  font-weight: 900;
  letter-spacing: 0.03em;
  width: 220px;
}

.javi-company-overview-table td {
  background: var(--javi-white);
  font-weight: 600;
}

.javi-company-access-heading {
  margin-top: 48px;
}

.javi-company-access-card {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  margin-top: 26px;
  overflow: hidden;
}

.javi-company-access-map {
  background: #eef4f9;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}

.javi-company-access-map .javi-map-frame {
  min-height: inherit;
}

.javi-company-access-info {
  display: grid;
  gap: 26px;
  padding: 46px 38px;
}

.javi-company-access-address {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 140px minmax(0, 1fr);
}

.javi-company-access-icon {
  color: var(--javi-blue);
  height: 140px;
  width: 140px;
}

.javi-company-access-address p {
  color: var(--javi-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  margin: 0;
}

.javi-company-access-note {
  border-top: 1px solid var(--javi-blue-line);
  color: var(--javi-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  padding-top: 24px;
}

.javi-contact-page-section {
  padding-bottom: 70px;
}

.javi-contact-layout {
  align-items: stretch;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.88fr);
  margin-top: 48px;
}

.javi-contact-form-card,
.javi-contact-info-card {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
}

.javi-contact-form-card {
  padding: 34px 34px 32px;
}

.javi-contact-form-card--fluent .fluentform,
.javi-contact-form-card--fluent .frm-fluent-form,
.javi-contact-form-card--fluent fieldset {
  margin: 0;
}

.javi-contact-form-card--fluent > p {
  margin: 0;
}

.javi-contact-form-card--fluent .ff-el-group {
  margin: 0 0 19px;
}

.javi-contact-form-card--fluent .ff-el-input--label {
  margin: 0 0 9px;
}

.javi-contact-form-card--fluent .ff-el-input--label label {
  color: var(--javi-navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  line-height: 1.4;
  margin: 0;
}

.javi-contact-form-card--fluent .ff-el-input--label.ff-el-is-required label::after,
.javi-contact-form-card--fluent .ff-el-input--label.ff-el-is-required.asterisk-right label::after {
  background: #ffe8e8;
  border-radius: 3px;
  color: #d53535;
  content: "必須" !important;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  margin-left: 0 !important;
  padding: 1px 7px;
}

.javi-contact-form-card--fluent .ff-el-form-control {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-sm);
  color: var(--javi-text);
  display: block;
  font-size: 15px;
  font-weight: 600;
  min-height: 52px;
  outline: none;
  padding: 0 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.javi-contact-form-card--fluent select.ff-el-form-control {
  appearance: auto;
}

.javi-contact-form-card--fluent textarea.ff-el-form-control {
  min-height: 132px;
  padding-block: 14px;
  resize: vertical;
}

.javi-contact-form-card--fluent .ff-el-form-control::placeholder {
  color: #93a2b7;
}

.javi-contact-form-card--fluent .ff-el-form-control:focus {
  border-color: #8bb4e4;
  box-shadow: 0 0 0 3px rgba(0, 71, 182, 0.1);
}

.javi-contact-form-card--fluent .javi-fluent-privacy {
  margin-bottom: 24px;
}

.javi-contact-form-card--fluent .javi-fluent-privacy .ff-el-form-check {
  margin: 0;
}

.javi-contact-form-card--fluent .javi-fluent-privacy .ff-el-form-check-label {
  align-items: center;
  color: var(--javi-blue);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  line-height: 1.5;
  margin: 0;
}

.javi-contact-form-card--fluent .javi-fluent-privacy .ff-el-form-check-input {
  accent-color: var(--javi-blue);
  flex: 0 0 auto;
  height: 18px;
  margin: 0;
  width: 18px;
}

.javi-contact-form-card--fluent .ff_submit_btn_wrapper {
  margin: 0;
}

.javi-contact-form-card--fluent .javi-fluent-submit {
  align-items: center;
  background: linear-gradient(135deg, var(--javi-blue), var(--javi-blue-strong));
  border: 1px solid var(--javi-blue);
  border-radius: var(--javi-radius-sm);
  box-shadow: 0 13px 28px rgba(0, 71, 182, 0.22);
  color: var(--javi-white);
  cursor: pointer;
  display: grid;
  font-size: 17px;
  font-weight: 900;
  gap: 12px;
  grid-template-columns: 1fr 22px;
  height: 60px;
  justify-items: center;
  line-height: 1;
  padding: 0 25px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  width: 100%;
}

.javi-contact-form-card--fluent .javi-fluent-submit::after {
  content: "→";
  font-size: 26px;
  font-weight: 400;
  justify-self: end;
  line-height: 1;
}

.javi-contact-form-card--fluent .javi-fluent-submit:hover {
  background: var(--javi-navy);
  box-shadow: 0 15px 30px rgba(0, 25, 67, 0.24);
  transform: translateY(-1px);
}

.javi-contact-form-card--fluent .ff-message-success,
.javi-contact-form-card--fluent .ff-errors-in-stack {
  border-radius: var(--javi-radius-sm);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.javi-contact-info-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 38px 34px;
}

.javi-contact-card-title {
  align-items: center;
  color: var(--javi-blue);
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.javi-contact-card-title__icon {
  height: 38px;
  width: 38px;
}

.javi-contact-card-title h2 {
  color: var(--javi-navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin: 0;
}

.javi-contact-field {
  margin-bottom: 19px;
}

.javi-contact-field label {
  color: var(--javi-navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  line-height: 1.4;
  margin-bottom: 9px;
}

.javi-contact-field label span {
  background: #ffe8e8;
  border-radius: 3px;
  color: #d53535;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  padding: 1px 7px;
}

.javi-contact-field input,
.javi-contact-field select,
.javi-contact-field textarea {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-sm);
  color: var(--javi-text);
  display: block;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  padding: 0 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.javi-contact-field input,
.javi-contact-field select {
  height: 52px;
}

.javi-contact-field textarea {
  min-height: 132px;
  padding-block: 14px;
  resize: vertical;
}

.javi-contact-field input::placeholder,
.javi-contact-field textarea::placeholder {
  color: #93a2b7;
}

.javi-contact-field input:focus,
.javi-contact-field select:focus,
.javi-contact-field textarea:focus {
  border-color: #8bb4e4;
  box-shadow: 0 0 0 3px rgba(0, 71, 182, 0.1);
}

.javi-contact-select-wrap {
  position: relative;
}

.javi-contact-select-wrap select {
  appearance: none;
  padding-right: 46px;
}

.javi-contact-select-wrap__icon {
  color: var(--javi-blue);
  height: 16px;
  pointer-events: none;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.javi-contact-privacy {
  align-items: center;
  color: var(--javi-blue);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.javi-contact-privacy input {
  accent-color: var(--javi-blue);
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.javi-contact-submit {
  align-items: center;
  background: linear-gradient(135deg, var(--javi-blue), var(--javi-blue-strong));
  border: 1px solid var(--javi-blue);
  border-radius: var(--javi-radius-sm);
  box-shadow: 0 13px 28px rgba(0, 71, 182, 0.22);
  color: var(--javi-white);
  cursor: pointer;
  display: grid;
  font-size: 17px;
  font-weight: 900;
  gap: 12px;
  grid-template-columns: 1fr 22px;
  height: 60px;
  justify-items: center;
  padding: 0 25px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  width: 100%;
}

.javi-contact-submit:hover {
  background: var(--javi-navy);
  box-shadow: 0 15px 30px rgba(0, 25, 67, 0.24);
  transform: translateY(-1px);
}

.javi-contact-submit__icon {
  height: 22px;
  justify-self: end;
  width: 22px;
}

.javi-contact-info-card__company {
  color: var(--javi-navy);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin: 10px 0 34px;
}

.javi-contact-info-list {
  display: grid;
  gap: 25px;
}

.javi-contact-info-item {
  align-items: start;
  color: var(--javi-blue);
  display: grid;
  gap: 18px;
  grid-template-columns: 38px minmax(0, 1fr);
}

.javi-contact-info-item__icon {
  height: 34px;
  margin-top: 2px;
  width: 34px;
}

.javi-contact-info-item p {
  color: var(--javi-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin: 0;
}

.javi-contact-info-item p span {
  color: var(--javi-blue);
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 3px;
}

.javi-contact-note {
  align-items: center;
  background: #f1f7ff;
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-sm);
  color: var(--javi-blue);
  display: grid;
  gap: 12px;
  grid-template-columns: 24px minmax(0, 1fr);
  margin-top: auto;
  padding: 18px 20px;
}

.javi-contact-note__icon {
  height: 22px;
  width: 22px;
}

.javi-contact-note p {
  color: var(--javi-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  margin: 0;
}

.javi-contact-faq {
  margin-top: 58px;
}

.javi-contact-faq-list {
  display: grid;
  gap: 12px;
  margin: 24px auto 0;
  max-width: 1040px;
}

.javi-contact-faq-item {
  background: var(--javi-white);
  border: 1px solid var(--javi-blue-line);
  border-radius: var(--javi-radius-md);
  overflow: hidden;
}

.javi-contact-faq-item summary {
  align-items: center;
  color: var(--javi-navy);
  cursor: pointer;
  display: grid;
  font-size: 15px;
  font-weight: 900;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 18px;
  list-style: none;
  min-height: 66px;
  padding: 0 24px;
}

.javi-contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.javi-contact-faq-item__question {
  align-items: center;
  display: inline-flex;
  gap: 18px;
  min-width: 0;
}

.javi-contact-faq-item__q {
  background: var(--javi-blue);
  border-radius: 50%;
  color: var(--javi-white);
  height: 32px;
  width: 32px;
}

.javi-contact-faq-item__chevron {
  color: var(--javi-blue);
  height: 16px;
  transition: transform 160ms ease;
  width: 16px;
}

.javi-contact-faq-item[open] .javi-contact-faq-item__chevron {
  transform: rotate(180deg);
}

.javi-contact-faq-item p {
  border-top: 1px solid var(--javi-blue-line);
  color: var(--javi-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  margin: 0;
  padding: 18px 24px 20px 74px;
}

.javi-contact-faq__note {
  color: var(--javi-muted);
  font-size: 14px;
  font-weight: 700;
  margin: 24px 0 0;
  text-align: center;
}

.javi-contact-cta {
  background:
    linear-gradient(90deg, rgba(0, 71, 182, 0.98), rgba(0, 55, 143, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 46px);
  color: var(--javi-white);
  overflow: hidden;
  position: relative;
}

.javi-contact-cta::after {
  background:
    linear-gradient(to top, rgba(0, 25, 67, 0.26), rgba(0, 71, 182, 0) 78%),
    url("../images/skyline.svg") center 55% / min(1480px, 138vw) auto no-repeat;
  bottom: -1px;
  content: "";
  height: clamp(168px, 15vw, 220px);
  left: 0;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 0;
}

.javi-contact-cta__inner {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 176px;
  padding-block: 36px;
  position: relative;
  z-index: 1;
}

.javi-contact-cta h2 {
  color: var(--javi-white);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.45;
  margin: 0;
}

.javi-contact-cta p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 0;
}

.javi-site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 71, 182, 0.32), transparent 32%),
    linear-gradient(135deg, #001943 0%, #002b68 100%);
  color: var(--javi-white);
  padding: 52px 0 30px;
}

.javi-footer__grid {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(280px, 1.3fr) 1fr 1fr;
}

.javi-footer__brand .javi-logo {
  color: var(--javi-white);
  font-size: 28px;
}

.javi-footer__address {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 2;
  margin: 22px 0 0;
}

.javi-footer__menu {
  display: grid;
  gap: 10px;
}

.javi-footer__menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.javi-footer__menu a:hover {
  color: var(--javi-white);
}

.javi-site-footer .javi-logo:focus-visible,
.javi-site-footer .javi-footer__menu a:focus-visible,
.javi-site-footer .javi-back-to-top:focus-visible {
  outline-color: rgba(255, 255, 255, 0.72);
}

.javi-footer__copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 42px 0 0;
  text-align: center;
}

.javi-back-to-top {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--javi-white);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-left: auto;
  width: 46px;
}

@keyframes javiFadeUp {
  from {
    opacity: 0;
    transform: translateY(var(--javi-reveal-y));
  }

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

@keyframes javiFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes javiHeroPan {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.035) translate3d(-10px, 0, 0);
  }
}

@keyframes javiFaqContent {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

.javi-delay-1 {
  --javi-motion-delay: var(--javi-motion-stagger);
}

.javi-delay-2 {
  --javi-motion-delay: calc(var(--javi-motion-stagger) * 2);
}

.javi-delay-3 {
  --javi-motion-delay: calc(var(--javi-motion-stagger) * 3);
}

.javi-delay-4 {
  --javi-motion-delay: calc(var(--javi-motion-stagger) * 4);
}

.javi-delay-5 {
  --javi-motion-delay: calc(var(--javi-motion-stagger) * 5);
}

.javi-delay-6 {
  --javi-motion-delay: calc(var(--javi-motion-stagger) * 6);
}

.javi-load-fade-up {
  animation: javiFadeUp var(--javi-motion-enter) var(--javi-ease-out) both;
  animation-delay: var(--javi-motion-delay, 0ms);
}

.javi-load-fade {
  animation: javiFadeIn var(--javi-motion-enter) var(--javi-ease-out) both;
  animation-delay: var(--javi-motion-delay, 0ms);
}

.javi-home-hero__media {
  background: none;
}

.javi-home-hero__media::before {
  background: url("../images/hero-home-consulting.webp") center right / cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.javi-load-scale-soft::before {
  animation: javiHeroPan 14s var(--javi-ease-soft) both;
  transform-origin: center;
}

.javi-reveal {
  --javi-reveal-transform: translateY(var(--javi-reveal-y));
  opacity: 1;
  transform: none;
}

.javi-reveal--fade {
  --javi-reveal-transform: translateY(0);
}

.javi-reveal--fade-up {
  --javi-reveal-transform: translateY(var(--javi-reveal-y));
}

.javi-reveal--slide-left {
  --javi-reveal-transform: translateX(-18px);
}

.javi-reveal--slide-right {
  --javi-reveal-transform: translateX(18px);
}

.javi-motion-enabled .javi-reveal {
  opacity: 0;
  transform: var(--javi-reveal-transform);
  transition:
    opacity var(--javi-motion-enter) var(--javi-ease-out),
    transform var(--javi-motion-enter) var(--javi-ease-out);
  transition-delay: var(--javi-motion-delay, 0ms);
  will-change: opacity, transform;
}

.javi-motion-enabled .javi-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.javi-motion-enabled .javi-reveal.is-visible,
.javi-motion-reduced .javi-reveal {
  will-change: auto;
}

.javi-nav__link,
.javi-header__cta,
.javi-button,
.javi-contact-form-card--fluent .ff-el-form-control,
.javi-contact-field input,
.javi-contact-field select,
.javi-contact-field textarea,
.javi-contact-submit,
.javi-contact-form-card--fluent .javi-fluent-submit,
.javi-contact-faq-item__chevron {
  transition-duration: var(--javi-motion-fast);
  transition-timing-function: var(--javi-ease-standard);
}

.javi-button > span[aria-hidden="true"],
.javi-card-arrow,
.javi-contact-form-card--fluent .javi-fluent-submit::after,
.javi-contact-submit__icon,
.javi-back-to-top {
  transition: transform var(--javi-motion-base) var(--javi-ease-out);
}

.javi-button > span[aria-hidden="true"],
.javi-card-arrow,
.javi-contact-form-card--fluent .javi-fluent-submit::after,
.javi-contact-submit__icon {
  display: inline-block;
}

.javi-button:hover > span[aria-hidden="true"],
.javi-service-card:hover .javi-card-arrow,
.javi-service-detail-card:hover .javi-card-arrow,
.javi-contact-form-card--fluent .javi-fluent-submit:hover::after,
.javi-contact-submit:hover .javi-contact-submit__icon {
  transform: translateX(4px);
}

.javi-header__cta:hover,
.javi-button:hover,
.javi-contact-submit:hover,
.javi-contact-form-card--fluent .javi-fluent-submit:hover {
  transform: translateY(-2px);
}

.javi-service-card,
.javi-feature-card,
.javi-flow-item,
.javi-job-card,
.javi-service-detail-card,
.javi-service-job-card,
.javi-services-flow-card,
.javi-company-value-card,
.javi-map-card,
.javi-company-table,
.javi-company-overview-table,
.javi-company-access-card,
.javi-contact-info-card,
.javi-contact-faq-item {
  transition:
    border-color var(--javi-motion-base) var(--javi-ease-standard),
    box-shadow var(--javi-motion-base) var(--javi-ease-standard),
    transform var(--javi-motion-base) var(--javi-ease-out);
}

.javi-home-png-icon {
  transition: transform var(--javi-motion-base) var(--javi-ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .javi-feature-card:hover,
  .javi-flow-item:hover,
  .javi-job-card:hover,
  .javi-service-job-card:hover,
  .javi-services-flow-card:hover,
  .javi-company-value-card:hover,
  .javi-map-card:hover,
  .javi-contact-info-card:hover,
  .javi-contact-faq-item:hover {
    border-color: #8bb4e4;
    box-shadow: var(--javi-shadow-card);
    transform: translateY(var(--javi-hover-y));
  }

  .javi-service-card:hover .javi-home-png-icon,
  .javi-feature-card:hover .javi-home-png-icon,
  .javi-flow-item:hover .javi-home-png-icon,
  .javi-job-card:hover .javi-home-png-icon,
  .javi-service-detail-card:hover .javi-home-png-icon,
  .javi-service-job-card:hover .javi-home-png-icon,
  .javi-services-flow-card:hover .javi-home-png-icon,
  .javi-company-value-card:hover .javi-home-png-icon,
  .javi-map-card:hover .javi-home-png-icon,
  .javi-company-access-address:hover .javi-home-png-icon {
    transform: translateY(-2px) scale(1.015);
  }

  .javi-back-to-top:hover {
    transform: translateY(-2px);
  }
}

.javi-contact-form-card:focus-within {
  border-color: #8bb4e4;
  box-shadow: 0 14px 34px rgba(7, 29, 73, 0.08);
}

.javi-contact-faq-item[open] p {
  animation: javiFaqContent var(--javi-motion-base) var(--javi-ease-out) both;
}

@media (max-width: 980px) {
  .javi-container {
    padding-inline: 24px;
  }

  .javi-header__inner {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding-block: 14px 16px;
  }

  .javi-logo {
    justify-content: center;
  }

  .javi-nav {
    justify-content: center;
    margin-left: 0;
    margin-inline: auto;
    overflow-x: auto;
    width: 100%;
  }

  .javi-nav::-webkit-scrollbar {
    display: none;
  }

  .javi-nav__link {
    min-height: 44px;
    padding: 0 14px;
  }

  .javi-header__cta {
    align-self: center;
    min-height: 46px;
    width: min(100%, 320px);
  }

  .javi-page-hero__inner,
  .javi-home-hero__inner,
  .javi-trust-strip__grid,
  .javi-service-grid--home,
  .javi-service-detail-grid,
  .javi-strength-grid,
  .javi-split-layout,
  .javi-company-grid,
  .javi-company-about-grid,
  .javi-company-access-card,
  .javi-contact-layout,
  .javi-contact-cta__inner,
  .javi-footer__grid {
    grid-template-columns: 1fr;
  }

  .javi-trust-item + .javi-trust-item {
    border-left: 0;
    border-top: 1px solid var(--javi-blue-line);
  }

  .javi-page-hero__content,
  .javi-home-hero__content {
    text-align: center;
  }

  .javi-breadcrumb {
    justify-content: center;
  }

  .javi-section__eyebrow--left {
    text-align: center;
  }

  .javi-split-layout {
    gap: 46px;
  }

  .javi-company-about-grid {
    gap: 42px;
  }

  .javi-company-access-card {
    max-width: 760px;
    margin-inline: auto;
  }

  .javi-contact-info-card {
    min-height: 0;
  }

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

  .javi-service-job-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .javi-services-flow-grid {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .javi-services-flow-card:not(:last-child)::after {
    display: none;
  }

  .javi-page-hero__media,
  .javi-home-hero__media {
    margin-inline: auto;
    max-width: 720px;
    min-height: 260px;
    width: 100%;
  }

  .javi-home-hero__inner {
    min-height: auto;
    padding-block: 48px;
  }

  .javi-contact-cta__inner {
    align-items: center;
    text-align: center;
  }

  .javi-service-grid--home,
  .javi-strength-grid,
  .javi-split-layout,
  .javi-company-grid,
  .javi-company-about-grid,
  .javi-contact-layout {
    margin-inline: auto;
    max-width: 760px;
    width: 100%;
  }

  .javi-footer__grid {
    gap: 34px;
    justify-items: center;
    text-align: center;
  }

  .javi-contact-cta::after {
    background-position: center bottom, center 55%;
    background-size: auto, 1240px auto;
    bottom: -1px;
    height: 150px;
    opacity: 0.22;
  }

  .javi-home-flow-jobs .javi-flow-item + .javi-flow-item::before {
    top: -24px;
  }
}

@media (max-width: 640px) {
  .javi-container {
    padding-inline: 18px;
  }

  .javi-header__inner {
    gap: 8px;
    padding-block: 10px 12px;
  }

  .javi-logo {
    font-size: 24px;
  }

  .javi-logo__mark {
    height: 34px;
    width: 34px;
  }

  .javi-logo__image {
    width: 168px;
  }

  .javi-logo__image--footer {
    width: 184px;
  }

  .javi-nav__link {
    font-size: 12px;
    min-height: 34px;
    padding: 0 7px;
  }

  .javi-page-hero__content {
    padding: 36px 0 28px;
  }

  .javi-page-hero h1,
  .javi-home-hero h1 {
    font-size: clamp(30px, 8.6vw, 34px);
    margin-inline: auto;
  }

  .javi-page-hero p,
  .javi-home-hero p {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 18px;
  }

  .javi-home-hero__inner {
    min-height: auto;
    padding-block: 34px;
  }

  .javi-home-hero__actions {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .javi-button,
  .javi-header__cta {
    width: 100%;
  }

  .javi-header__cta {
    max-width: 300px;
    min-height: 42px;
  }

  .javi-page-hero__media,
  .javi-home-hero__media {
    min-height: 220px;
  }

  .javi-section {
    padding: 48px 0;
  }

  .javi-section--compact {
    padding-top: 34px;
  }

  .javi-section__eyebrow {
    margin-bottom: 9px;
  }

  .javi-section__heading {
    font-size: clamp(26px, 7.8vw, 32px);
    margin-bottom: 12px;
  }

  .javi-section__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .javi-trust-item {
    gap: 14px;
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 0;
    padding: 16px 0;
  }

  .javi-trust-item__icon {
    height: 90px;
    width: 90px;
  }

  .javi-service-card {
    gap: 14px;
    grid-template-columns: 92px minmax(0, 1fr) 14px;
    margin-inline: auto;
    max-width: 520px;
    min-height: 0;
    padding: 18px 16px;
    width: 100%;
  }

  .javi-service-card__icon {
    height: 88px;
    width: 88px;
  }

  .javi-service-card h3,
  .javi-job-card h3,
  .javi-service-job-card h3 {
    font-size: 18px;
  }

  .javi-feature-card,
  .javi-job-card {
    margin-inline: auto;
    max-width: 520px;
    min-height: 0;
    width: 100%;
  }

  .javi-feature-card {
    padding: 24px 18px 22px;
  }

  .javi-feature-card__icon {
    height: 112px;
    width: 112px;
  }

  .javi-split-heading {
    font-size: 26px;
    margin-bottom: 18px;
    text-align: center;
  }

  .javi-flow-list {
    margin-inline: auto;
    max-width: 520px;
    width: 100%;
  }

  .javi-flow-item {
    gap: 12px;
    grid-template-columns: 38px 82px minmax(0, 1fr);
    padding: 14px 12px;
  }

  .javi-flow-item__number {
    font-size: 13px;
    height: 34px;
    width: 34px;
  }

  .javi-flow-item__icon {
    height: 82px;
    width: 82px;
  }

  .javi-flow-item h3 {
    font-size: 15px;
  }

  .javi-flow-item p {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .javi-job-grid {
    gap: 16px;
    grid-template-columns: 1fr;
    margin-inline: auto;
    max-width: 520px;
    width: 100%;
  }

  .javi-job-card__icon {
    height: 112px;
    width: 112px;
  }

  .javi-map-card__body {
    gap: 12px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px;
    text-align: center;
  }

  .javi-map-card__icon {
    height: 90px;
    width: 90px;
  }

  .javi-service-detail-card {
    gap: 14px;
    grid-template-columns: 92px minmax(0, 1fr) 14px;
    margin-inline: auto;
    max-width: 520px;
    min-height: 0;
    padding: 20px 16px;
    width: 100%;
  }

  .javi-service-detail-card__icon {
    height: 88px;
    width: 88px;
  }

  .javi-service-detail-card h3 {
    font-size: 20px;
  }

  .javi-service-detail-card p,
  .javi-service-detail-card li {
    font-size: 13px;
  }

  .javi-service-job-row,
  .javi-services-flow-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .javi-service-job-card {
    margin-inline: auto;
    max-width: 520px;
    width: 100%;
  }

  .javi-services-flow-card {
    margin-inline: auto;
    max-width: 520px;
    min-height: 0;
    padding: 22px 18px;
    width: 100%;
  }

  .javi-company-about-copy h2 {
    font-size: 28px;
  }

  .javi-company-about-copy p {
    font-size: 14px;
    line-height: 2;
    text-align: center;
  }

  .javi-company-about-image {
    margin-inline: auto;
    max-width: 520px;
  }

  .javi-company-values-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .javi-company-value-card {
    margin-inline: auto;
    max-width: 520px;
    min-height: 0;
    padding: 24px 18px 22px;
    width: 100%;
  }

  .javi-company-value-card__icon {
    height: 112px;
    width: 112px;
  }

  .javi-company-overview-table th,
  .javi-company-overview-table td {
    display: block;
    padding: 12px 16px;
    width: 100%;
  }

  .javi-company-overview-table th {
    border-bottom: 0;
  }

  .javi-company-access-map {
    min-height: 170px;
  }

  .javi-company-access-info {
    justify-items: center;
    gap: 20px;
    padding: 24px 18px;
    text-align: center;
  }

  .javi-company-access-address {
    gap: 12px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .javi-company-access-icon {
    height: 90px;
    width: 90px;
  }

  .javi-company-access-address p,
  .javi-company-access-note {
    font-size: 14px;
  }

  .javi-contact-page-section {
    padding-bottom: 48px;
  }

  .javi-contact-layout {
    gap: 20px;
    margin-top: 28px;
  }

  .javi-contact-form-card,
  .javi-contact-info-card {
    margin-inline: auto;
    max-width: 520px;
    padding: 22px 16px;
    width: 100%;
  }

  .javi-contact-card-title {
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    text-align: center;
  }

  .javi-contact-card-title__icon {
    height: 32px;
    width: 32px;
  }

  .javi-contact-card-title h2 {
    font-size: 20px;
  }

  .javi-contact-field {
    margin-bottom: 16px;
  }

  .javi-contact-field input,
  .javi-contact-field select {
    height: 48px;
  }

  .javi-contact-field input,
  .javi-contact-field select,
  .javi-contact-field textarea {
    font-size: 14px;
    padding-inline: 14px;
  }

  .javi-contact-form-card--fluent .ff-el-group {
    margin-bottom: 16px;
  }

  .javi-contact-form-card--fluent .ff-el-form-control {
    font-size: 14px;
    min-height: 48px;
    padding-inline: 14px;
  }

  .javi-contact-form-card--fluent textarea.ff-el-form-control {
    min-height: 132px;
  }

  .javi-contact-info-card__company {
    font-size: 22px;
    margin-bottom: 22px;
    text-align: center;
  }

  .javi-contact-info-list {
    gap: 18px;
  }

  .javi-contact-info-item {
    gap: 8px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .javi-contact-info-item__icon {
    height: 30px;
    width: 30px;
  }

  .javi-contact-info-item p,
  .javi-contact-info-item p span {
    font-size: 14px;
  }

  .javi-contact-note {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 24px;
    padding: 14px 15px;
    text-align: center;
  }

  .javi-contact-faq {
    margin-top: 34px;
  }

  .javi-contact-faq-list {
    margin-inline: auto;
    margin-top: 18px;
    max-width: 520px;
    width: 100%;
  }

  .javi-contact-faq-item summary {
    gap: 12px;
    min-height: 62px;
    padding: 0 16px;
  }

  .javi-contact-faq-item__question {
    gap: 12px;
  }

  .javi-contact-faq-item__q {
    height: 28px;
    width: 28px;
  }

  .javi-contact-faq-item p {
    padding: 14px 16px 18px;
  }

  .javi-company-table th,
  .javi-company-table td {
    display: block;
    padding: 12px 16px;
    width: 100%;
  }

  .javi-company-table th {
    border-bottom: 0;
  }

  .javi-map-visual {
    height: 160px;
  }

  .javi-section {
    padding: 48px 0;
  }

  .javi-contact-cta__inner {
    min-height: 0;
  }

  .javi-site-footer {
    padding: 40px 0 24px;
    text-align: center;
  }

  .javi-footer__address {
    margin-top: 16px;
  }

  .javi-footer__menu {
    gap: 8px;
    justify-items: center;
  }

  .javi-back-to-top {
    margin: 8px auto 0;
  }

  .javi-footer__copy {
    margin-top: 28px;
  }

  .javi-contact-cta::after {
    background-position: center bottom, center 54%;
    background-size: auto, 980px auto;
    bottom: -3px;
    height: 126px;
    opacity: 0.21;
  }
}

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

  .javi-reveal,
  .javi-load-fade-up,
  .javi-load-fade,
  .javi-load-scale-soft,
  .javi-load-scale-soft::before {
    opacity: 1 !important;
    transform: none !important;
  }
}
