:root {
  --navy-950: #002a5e;
  --navy-900: #003a87;
  --navy-800: #054593;
  --blue-600: #003a87;
  --blue-500: #185099;
  --blue-100: #e9edff;
  --ink: #111a2c;
  --muted: #5e6779;
  --surface: #f5f7fc;
  --white: #ffffff;
  --line: #dfe4ef;
  --gold: #ffbf3f;
  --shadow-sm: 0 14px 35px rgba(8, 25, 78, 0.1);
  --shadow-lg: 0 28px 70px rgba(2, 14, 60, 0.2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--blue-600);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5.2vw, 5.15rem);
  max-width: 740px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
}

h3 {
  font-size: 1.34rem;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: height 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: rgba(12, 31, 84, 0.08);
  box-shadow: 0 10px 30px rgba(7, 26, 92, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 28px;
  height: 100%;
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a {
  position: relative;
  font-weight: 650;
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 12px 30px rgba(62, 85, 255, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #2639c0;
  box-shadow: 0 16px 34px rgba(62, 85, 255, 0.35);
}

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

.button-outline {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--navy-900);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--navy-900);
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow-on-dark {
  color: #cbd2ff;
}

.hero {
  position: relative;
  min-height: 800px;
  padding: 150px 0 82px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 32%, rgba(70, 98, 255, 0.24), transparent 28%),
    linear-gradient(145deg, #071a5c 0%, #061451 58%, #020c31 100%);
  background-size: 120% 120%;
  animation: heroLighting 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -130px;
  left: -8%;
  height: 170px;
  background: var(--white);
  transform: rotate(-1.5deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  width: max-content;
  padding: 7px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

.hero-copy .eyebrow::before {
  display: none;
}

.hero-lead {
  margin-bottom: 34px;
  color: #cbd3f1;
  font-size: 1.13rem;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  gap: 24px;
  padding: 28px 0 0;
  margin: 0;
  list-style: none;
  color: #c7cfed;
  font-size: 0.86rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--blue-500);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.hero-image-frame {
  position: absolute;
  inset: 25px 0 0 36px;
  overflow: hidden;
  background: #7684be;
  border: 11px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  animation: mediaFloat 7s ease-in-out infinite;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.page-hero {
  padding: 142px 0 76px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(70, 98, 255, 0.25), transparent 28%),
    linear-gradient(145deg, #071a5c 0%, #061451 58%, #020c31 100%);
  background-size: 120% 120%;
  animation: heroLighting 12s ease-in-out infinite alternate;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 28px;
  color: #cbd3f1;
  font-size: 1.08rem;
}

.page-hero-media {
  position: relative;
  height: 380px;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: mediaFloat 7s ease-in-out infinite;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.page-hero-media:hover img {
  transform: scale(1.035);
}

.page-hero-media.align-top img {
  object-position: center 25%;
}

.page-intro {
  max-width: 800px;
}

.page-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.page-cta {
  padding: 54px 0;
  color: var(--white);
  background: var(--navy-900);
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.page-cta h2 {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: #cbd3ec;
}

.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 190px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(2, 14, 60, 0.23);
  backdrop-filter: blur(12px);
}

.floating-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.floating-card strong {
  color: var(--navy-900);
}

.floating-card-top {
  top: 116px;
  left: -8px;
  animation: cardFloat 5s ease-in-out infinite;
}

.floating-card-bottom {
  right: -20px;
  bottom: 52px;
  animation: cardFloat 5.8s ease-in-out 0.8s infinite reverse;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: 92px;
}

.photo-composition {
  position: relative;
  min-height: 600px;
}

.photo-main,
.photo-secondary {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.photo-main {
  inset: 0 85px 80px 0;
  width: calc(100% - 85px);
  height: calc(100% - 80px);
}

.photo-secondary {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 48%;
  border: 8px solid var(--white);
}

.experience-card {
  position: absolute;
  top: 26px;
  right: 42px;
  display: grid;
  width: 142px;
  min-height: 132px;
  place-content: center;
  padding: 14px;
  color: var(--white);
  text-align: center;
  background: var(--blue-600);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.experience-card strong {
  font-size: 2.6rem;
  line-height: 1;
}

.experience-card span {
  margin-top: 8px;
  font-size: 0.78rem;
  line-height: 1.25;
}

.section-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 30px 0;
}

.trust-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.trust-list span {
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-list p {
  margin: 0;
  color: var(--muted);
}

.trust-list strong {
  display: block;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-weight: 850;
}

.services {
  background:
    radial-gradient(circle at 8% 12%, rgba(62, 85, 255, 0.08), transparent 24%),
    var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

.section-heading.centered {
  display: block;
  max-width: 750px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.service-card {
  display: flex;
  position: relative;
  min-height: 270px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 26, 92, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 25px rgba(7, 26, 92, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(82, 104, 255, 0.09), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(62, 85, 255, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  margin: 58px 0 12px;
}

.service-card p {
  flex: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue-600);
  font-size: 0.88rem;
  font-weight: 850;
}

.service-link span {
  transition: transform 180ms ease;
}

.service-link:hover span,
.service-link:focus-visible span {
  transform: translateX(4px);
}

.service-number {
  position: absolute;
  top: 28px;
  left: 30px;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-number::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--blue-100);
}

.service-card-accent {
  color: var(--white);
  background: var(--navy-900);
}

.service-card-accent p {
  color: #cbd3ec;
}

.service-card-accent .service-number,
.service-card-accent a {
  color: #aeb9ff;
}

.process {
  background: var(--white);
}

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

.process-step {
  position: relative;
  padding: 30px;
  background: var(--surface);
  border: 1px solid rgba(7, 26, 92, 0.08);
  border-radius: var(--radius-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-step:hover {
  border-color: rgba(62, 85, 255, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.process-step > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.process-step h3 {
  margin: 22px 0 10px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.why {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(62, 85, 255, 0.35), transparent 26%),
    var(--navy-950);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 80px;
}

.why-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #c3cae3;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin: 34px 0;
}

.why-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.why-list span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.why-list p {
  margin: 0;
  color: #aeb8d9;
  font-size: 0.9rem;
}

.why-list strong {
  color: var(--white);
}

.phone-link {
  display: grid;
  gap: 2px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.phone-link span {
  color: #9da9d0;
  font-size: 0.76rem;
}

.why-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-visual > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms ease;
}

.why-visual:hover > img {
  transform: scale(1.035);
}

.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 17, 63, 0.02), rgba(4, 17, 63, 0.42));
}

.why-visual-card {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 180px;
  gap: 3px;
  padding: 15px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.why-visual-card span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.why-visual-card-top {
  top: 34px;
  left: 26px;
  animation: cardFloat 5.5s ease-in-out infinite;
}

.why-visual-card-bottom {
  right: 24px;
  bottom: 32px;
  animation: cardFloat 6s ease-in-out 0.7s infinite reverse;
}

.service-detail {
  background:
    radial-gradient(circle at 8% 12%, rgba(62, 85, 255, 0.08), transparent 26%),
    var(--white);
}

.service-fit {
  background: var(--surface);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  align-items: start;
  gap: 80px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  min-height: 104px;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(7, 26, 92, 0.045);
}

.service-detail .detail-list li {
  background: var(--surface);
}

.detail-list li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
}

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

.detail-list.compact li {
  min-height: auto;
}

@keyframes heroLighting {
  from {
    background-position: 0% 35%;
  }
  to {
    background-position: 100% 65%;
  }
}

@keyframes mediaFloat {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.4deg);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.industries-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.industries-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.industries-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 17, 63, 0.98) 0%, rgba(4, 17, 63, 0.93) 45%, rgba(4, 17, 63, 0.18) 100%);
}

.industries-content {
  position: relative;
  z-index: 1;
  width: 62%;
  padding: 70px;
}

.industries-content > p:not(.eyebrow) {
  max-width: 630px;
  color: #cbd3ec;
}

.industries-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.industries-content li {
  display: grid;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.industries-content li:last-child {
  grid-column: 1 / -1;
}

.industries-content span {
  color: #aeb8d9;
  font-size: 0.8rem;
}

.testimonials {
  background: var(--surface);
}

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

.testimonial-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(7, 26, 92, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 25px rgba(7, 26, 92, 0.05);
}

.stars {
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.stars span {
  margin-left: 7px;
  color: var(--navy-900);
  font-weight: 900;
  letter-spacing: 0;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 24px 0 32px;
  color: #3f485a;
  font-size: 1rem;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-card figcaption img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card figcaption span {
  display: grid;
}

.testimonial-card small {
  color: var(--muted);
}

.documents {
  padding-top: 80px;
  padding-bottom: 80px;
}

.document-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 34px;
  background: linear-gradient(135deg, #eef1ff 0%, #f8f9fd 100%);
  border: 1px solid #dce1fa;
  border-radius: var(--radius-md);
}

.document-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.document-card p {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--muted);
}

.document-card .eyebrow {
  margin-bottom: 8px;
}

.document-icon {
  display: grid;
  width: 82px;
  height: 96px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.document-actions .button {
  white-space: nowrap;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.contact-background {
  position: absolute;
  inset: 0;
}

.contact-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 17, 63, 0.98) 0%, rgba(4, 17, 63, 0.9) 52%, rgba(4, 17, 63, 0.74) 100%);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: 90px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: #cbd3ec;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-details a {
  display: grid;
  width: max-content;
  padding-left: 18px;
  border-left: 3px solid var(--blue-500);
}

.contact-details span {
  color: #aeb8d9;
  font-size: 0.76rem;
}

.contact-details strong {
  font-size: 1.06rem;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-heading h3 {
  margin-bottom: 6px;
  font-size: 1.65rem;
}

.form-heading p,
.form-privacy {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.contact-form label > span {
  font-size: 0.78rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #d8deea;
  border-radius: 9px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 108px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(62, 85, 255, 0.13);
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: #226341;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #9d2631;
}

.form-privacy {
  margin: 5px 0 0;
  text-align: center;
}

.site-footer {
  padding: 66px 0 24px;
  color: #c6cee8;
  background: #020a27;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(130px, 0.6fr));
  gap: 48px;
}

.footer-brand img {
  width: 145px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 340px;
  color: #9da8ca;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-grid a {
  color: #aeb8d9;
  font-size: 0.88rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.legal-page {
  min-height: 100vh;
  background: var(--surface);
}

.legal-header {
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header img {
  width: 120px;
}

.legal-header a:last-child {
  color: var(--blue-600);
  font-weight: 800;
}

.legal-content {
  width: min(820px, calc(100% - 40px));
  padding: 72px 0 100px;
  margin-inline: auto;
}

.legal-content h1 {
  color: var(--navy-900);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-content h2 {
  margin-top: 38px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: #4c566b;
}

.legal-content a {
  color: var(--blue-600);
  text-decoration: underline;
}

.legal-note {
  padding: 18px 20px;
  background: var(--blue-100);
  border-left: 4px solid var(--blue-600);
  border-radius: 8px;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  color: var(--white);
  text-align: center;
  background: var(--navy-900);
}

.error-page img {
  width: 150px;
  padding: 10px;
  margin: 0 auto 30px;
  background: var(--white);
  border-radius: 12px;
}

.error-page h1 {
  margin-bottom: 12px;
}

.error-page p {
  color: #cbd3ec;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 145px 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    gap: 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
  }

  .about-grid {
    gap: 55px;
  }

  .page-hero-grid {
    gap: 42px;
  }

  .industries-content {
    width: 70%;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy-900);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 26px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(7, 26, 92, 0.14);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .page-hero-grid,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero-media {
    max-width: 680px;
  }

  .service-detail-grid {
    gap: 36px;
  }

  .hero-visual {
    min-height: 540px;
    max-width: 620px;
  }

  .hero-image-frame {
    left: 30px;
  }

  .about-grid {
    gap: 60px;
  }

  .photo-composition {
    max-width: 680px;
  }

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

  .service-card:last-child,
  .process-step:last-child,
  .testimonial-card:last-child {
    grid-column: 1 / -1;
  }

  .why-visual {
    max-width: 680px;
  }

  .industries-content {
    width: 80%;
    padding: 55px;
  }

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

  .document-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .contact-grid {
    gap: 50px;
  }

  .page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 12.4vw, 3.75rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .brand img {
    width: 112px;
  }

  .hero {
    padding: 116px 0 80px;
  }

  .page-hero {
    padding: 110px 0 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .page-hero-media {
    height: 300px;
  }

  .hero::after {
    height: 140px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-copy .button-row .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 7px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-image-frame {
    inset: 10px 8px 0 8px;
    border-width: 7px;
  }

  .floating-card {
    min-width: 150px;
    padding: 12px 14px;
  }

  .floating-card-top {
    top: 58px;
    left: -1px;
  }

  .floating-card-bottom {
    right: -2px;
    bottom: 32px;
  }

  .photo-composition {
    min-height: 430px;
  }

  .photo-main {
    right: 52px;
    bottom: 52px;
    width: calc(100% - 52px);
    height: calc(100% - 52px);
  }

  .photo-secondary {
    width: 52%;
    height: 46%;
    border-width: 5px;
  }

  .experience-card {
    top: 18px;
    right: 22px;
    width: 112px;
    min-height: 106px;
  }

  .experience-card strong {
    font-size: 2rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 34px;
  }

  .service-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .process-step:last-child,
  .testimonial-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .why-list,
  .detail-list,
  .industries-content ul {
    grid-template-columns: 1fr;
  }

  .why-list {
    gap: 16px;
  }

  .phone-link {
    width: 100%;
    padding: 10px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .why-visual,
  .why-visual > img {
    min-height: 430px;
  }

  .why-visual-card {
    min-width: 150px;
    padding: 12px 14px;
  }

  .industries-card {
    min-height: 710px;
  }

  .industries-card::after {
    background: linear-gradient(0deg, rgba(4, 17, 63, 0.99) 0%, rgba(4, 17, 63, 0.95) 62%, rgba(4, 17, 63, 0.35) 100%);
  }

  .industries-content {
    display: flex;
    width: 100%;
    min-height: 710px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 24px;
  }

  .industries-content li:last-child {
    grid-column: auto;
  }

  .testimonial-card {
    min-height: auto;
  }

  .document-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .document-icon {
    width: 66px;
    height: 76px;
  }

  .document-actions {
    grid-column: auto;
    display: grid;
    width: 100%;
  }

  .document-actions .button {
    width: 100%;
  }

  .contact {
    padding-top: 76px;
  }

  .contact-details a {
    width: 100%;
  }

  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .legal-header .container {
    width: min(100% - 28px, var(--container));
  }

  .legal-content {
    width: min(100% - 28px, 820px);
    padding-top: 50px;
  }
}

/* 2026-07-27: Cinematic homepage hero selected from visual direction 1 */

.hero-cinematic {
  min-height: 710px;
  padding: 0;
  background-color: #003a87;
  isolation: isolate;
}

.hero-cinematic::after {
  display: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
  background: #003a87;
}

.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 44%;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 58, 135, 0.98) 0%,
      rgba(0, 58, 135, 0.94) 30%,
      rgba(0, 55, 130, 0.76) 51%,
      rgba(0, 30, 75, 0.42) 74%,
      rgba(0, 21, 52, 0.56) 100%
    );
}

.hero-cinematic-inner {
  display: flex;
  position: relative;
  min-height: 710px;
  align-items: center;
  padding-top: 118px;
  padding-bottom: 54px;
}

.hero-cinematic .hero-copy {
  width: min(650px, 60%);
  padding: 36px 0;
}

.hero-cinematic .hero-copy h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 4.7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.hero-cinematic .hero-copy .eyebrow {
  width: auto;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.17em;
}

.hero-cinematic .hero-copy .eyebrow::before {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--signal);
}

.hero-title-rule {
  display: block;
  width: 88px;
  height: 5px;
  margin-bottom: 24px;
  background: var(--signal);
}

.hero-cinematic .hero-lead {
  max-width: 510px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

.hero-cinematic .button-primary {
  color: var(--white);
  background: #054593;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 21, 61, 0.28);
}

.hero-cinematic .button-primary:hover,
.hero-cinematic .button-primary:focus-visible {
  color: var(--white);
  background: #0a65d6;
  box-shadow: 0 15px 32px rgba(0, 21, 61, 0.34);
  transform: translateY(-2px);
}

.hero-cinematic .button-light {
  color: var(--white);
  background: rgba(0, 33, 82, 0.18);
  border-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(5px);
}

.hero-cinematic .button-light:hover,
.hero-cinematic .button-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.workboard {
  color: var(--white);
  background: #003a87;
  border: 0;
}

.workboard-flow {
  display: grid;
  min-height: 96px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.82fr) auto minmax(0, 1.18fr);
  align-items: center;
  gap: 26px;
  text-align: center;
}

.workboard-flow > span:not(.workboard-arrow) {
  font-size: 0.94rem;
  font-weight: 650;
}

.workboard-arrow {
  color: var(--signal);
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .hero-cinematic,
  .hero-cinematic-inner {
    min-height: 700px;
  }

  .hero-cinematic .hero-copy {
    width: min(660px, 86%);
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0, 58, 135, 0.98) 0%,
        rgba(0, 58, 135, 0.93) 48%,
        rgba(0, 39, 94, 0.58) 100%
      );
  }

  .hero-poster {
    object-position: 58% center;
  }

  .workboard-flow {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .hero-cinematic {
    min-height: 690px;
    padding: 0;
  }

  .hero-cinematic-inner {
    min-height: 690px;
    padding-top: 105px;
    padding-bottom: 72px;
  }

  .hero-cinematic .hero-copy {
    width: 100%;
    padding: 24px 0;
  }

  .hero-cinematic .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(2.65rem, 12vw, 3.5rem);
    line-height: 1.02;
  }

  .hero-cinematic .hero-copy .eyebrow {
    max-width: 320px;
    margin-bottom: 18px;
    font-size: 0.64rem;
  }

  .hero-cinematic .hero-lead {
    max-width: 350px;
    font-size: 1rem;
  }

  .hero-cinematic .button-row {
    align-items: stretch;
  }

  .hero-cinematic .button {
    flex: 1 1 150px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 58, 135, 0.92) 0%,
        rgba(0, 58, 135, 0.96) 45%,
        rgba(0, 39, 94, 0.84) 100%
      );
  }

  .hero-poster {
    object-position: 54% center;
  }

  .workboard-flow {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .workboard-arrow {
    transform: rotate(90deg);
  }
}

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

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

/* 2026-07-27: Distinctive JVAS workboard design system */

:root {
  --paper: #fbfaf6;
  --paper-blue: #eef2fb;
  --signal: #ffc33d;
  --signal-soft: #fff3cf;
  --grid-line: rgba(7, 26, 92, 0.13);
}

body {
  background: var(--paper);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.section {
  padding: 88px 0;
}

.site-header {
  border-bottom-color: rgba(7, 26, 92, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: clamp(88px, 14vw, 220px);
  height: 3px;
  background: var(--signal);
}

.brand img {
  width: 140px;
}

.site-nav a {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.button {
  border-radius: 6px 14px 6px 6px;
}

.button-primary {
  box-shadow: 7px 7px 0 rgba(3, 14, 54, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 4px 4px 0 rgba(3, 14, 54, 0.18);
  transform: translate(3px, 3px);
}

.hero .button-primary,
.page-hero .button-primary,
.page-cta .button-primary,
.why .button-primary {
  color: var(--navy-950);
  background: var(--signal);
  box-shadow: 7px 7px 0 rgba(0, 35, 82, 0.24);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.page-hero .button-primary:hover,
.page-hero .button-primary:focus-visible,
.page-cta .button-primary:hover,
.page-cta .button-primary:focus-visible,
.why .button-primary:hover,
.why .button-primary:focus-visible {
  background: #ffd268;
}

.eyebrow {
  color: var(--navy-800);
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  background: var(--signal);
}

.hero {
  min-height: 720px;
  padding: 138px 0 58px;
  background: #003a87;
}

.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.86fr);
  gap: 68px;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 4.15vw, 4.1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.hero-copy .eyebrow {
  padding: 0;
  color: #dce2ff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy .eyebrow span {
  color: var(--signal);
}

.hero-title-mark {
  display: inline;
  color: var(--white);
  box-shadow: inset 0 -0.12em 0 rgba(255, 195, 61, 0.86);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-points {
  gap: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-points li {
  flex: 1 1 0;
  align-items: flex-start;
  padding-right: 18px;
}

.hero-points li + li {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-points li::before {
  margin-top: 0.55em;
  background: var(--signal);
  border-radius: 1px;
}

.hero-visual {
  min-height: 510px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 4px;
  right: -18px;
  width: 44%;
  height: 62%;
  background: var(--signal);
  border-radius: 4px 4px 48px;
  opacity: 0.95;
  transform: rotate(2deg);
}

.hero-image-frame {
  inset: 24px 0 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px 6px 54px 6px;
  box-shadow: 18px 22px 0 rgba(2, 11, 44, 0.34);
  animation: none;
}

.hero-image-frame img {
  object-position: 50% 30%;
}

.floating-card {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-left: 5px solid var(--signal);
  border-radius: 3px 14px 3px 3px;
  box-shadow: 10px 12px 0 rgba(2, 11, 44, 0.2);
  backdrop-filter: none;
}

.floating-card-top {
  top: 82px;
  left: -12px;
}

.floating-card-bottom {
  right: -12px;
  bottom: 36px;
}

.workboard {
  color: var(--navy-950);
  background: var(--signal-soft);
  border-top: 1px solid rgba(7, 26, 92, 0.13);
  border-bottom: 1px solid rgba(7, 26, 92, 0.13);
}

.workboard-inner {
  display: grid;
  min-height: 126px;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 2fr);
  align-items: stretch;
}

.workboard-intro {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px 28px 22px 0;
  border-right: 1px solid var(--grid-line);
}

.workboard-intro span {
  color: var(--navy-800);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.workboard-intro strong {
  max-width: 280px;
  font-size: 1rem;
  line-height: 1.35;
}

.workboard-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.workboard-steps li {
  display: grid;
  align-content: center;
  gap: 1px;
  padding: 20px 22px;
}

.workboard-steps li + li {
  border-left: 1px solid var(--grid-line);
}

.workboard-steps span {
  color: var(--blue-600);
  font-size: 0.68rem;
  font-weight: 950;
}

.workboard-steps strong {
  font-size: 0.98rem;
}

.workboard-steps small {
  color: #555f74;
}

.about {
  background: var(--paper);
}

.photo-main,
.photo-secondary {
  border-radius: 5px 5px 36px 5px;
}

.photo-main {
  box-shadow: 18px 22px 0 #dfe4f2;
}

.photo-secondary {
  border: 6px solid var(--paper);
  box-shadow: 10px 14px 0 rgba(7, 26, 92, 0.11);
}

.experience-card {
  top: 18px;
  right: 30px;
  width: 152px;
  min-height: 112px;
  color: var(--navy-950);
  background: var(--signal);
  border-radius: 3px 18px 3px 3px;
  box-shadow: 8px 10px 0 rgba(7, 26, 92, 0.16);
}

.experience-card strong {
  font-size: 1.65rem;
  letter-spacing: -0.06em;
}

.trust-list > div {
  grid-template-columns: 42px 1fr;
  border-color: var(--grid-line);
}

.trust-list span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--navy-950);
  background: var(--signal-soft);
  border: 1px solid rgba(7, 26, 92, 0.12);
}

.services {
  background: var(--paper-blue);
  border-top: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
}

.section-heading {
  align-items: start;
  padding-bottom: 28px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--grid-line);
}

.section-heading.centered {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  grid-column: span 4;
  min-height: 255px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--grid-line);
  border-top: 4px solid var(--blue-600);
  border-radius: 3px 18px 3px 3px;
  box-shadow: none;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
  min-height: 235px;
}

.service-card:nth-child(1) {
  color: var(--white);
  background: var(--navy-900);
  border-top-color: var(--signal);
}

.service-card:nth-child(1) p {
  color: #cbd3ec;
}

.service-card:nth-child(1) .service-number,
.service-card:nth-child(1) .service-link {
  color: var(--signal);
}

.service-card:nth-child(9) {
  grid-column: 1 / -1;
  min-height: 210px;
  padding-right: 32px;
  border-top-color: var(--signal);
  border-radius: 3px 30px 3px 3px;
}

.service-card::before {
  background: linear-gradient(135deg, rgba(255, 195, 61, 0.14), transparent 38%);
}

.service-card:hover {
  border-color: rgba(7, 26, 92, 0.28);
  border-top-color: var(--signal);
  box-shadow: 8px 10px 0 rgba(7, 26, 92, 0.1);
  transform: translate(-2px, -2px);
}

.service-card h3 {
  margin-top: 50px;
}

.service-number::after {
  background: rgba(62, 85, 255, 0.22);
}

.process {
  background: var(--paper);
}

.process-grid {
  gap: 0;
  padding-top: 0;
  border-top: 1px solid var(--grid-line);
}

.process-step {
  min-height: 220px;
  padding: 36px 34px 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.process-step + .process-step {
  border-left: 1px solid var(--grid-line);
}

.process-step:hover {
  border-color: var(--grid-line);
  box-shadow: none;
  transform: none;
}

.process-step > span {
  width: 38px;
  height: 38px;
  color: var(--navy-950);
  background: var(--signal);
  border-radius: 2px 10px 2px 2px;
}

.why {
  background: #003a87;
  border-top: 8px solid var(--signal);
}

.why-list span {
  color: var(--navy-950);
  background: var(--signal);
  border-radius: 2px 8px 2px 2px;
}

.why-visual {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 10px solid var(--signal);
  border-radius: 4px 4px 44px 4px;
  box-shadow: 16px 20px 0 rgba(0, 0, 0, 0.18);
}

.why-visual-card {
  border: 0;
  border-left: 5px solid var(--signal);
  border-radius: 2px 12px 2px 2px;
}

.industries-card {
  border: 1px solid rgba(7, 26, 92, 0.16);
  border-radius: 5px 5px 54px 5px;
  box-shadow: 18px 22px 0 #dfe4f2;
}

.industries-content li {
  border-radius: 2px 10px 2px 2px;
}

.testimonials {
  background: var(--paper-blue);
}

.testimonial-grid {
  align-items: start;
}

.testimonial-card {
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--grid-line);
  border-top: 5px solid var(--signal);
  border-radius: 3px 18px 3px 3px;
  box-shadow: 8px 10px 0 rgba(7, 26, 92, 0.08);
}

.testimonial-card:nth-child(2) {
  margin-top: 28px;
}

.testimonial-card figcaption img {
  border: 3px solid var(--signal-soft);
}

.document-card {
  background: var(--paper-blue);
  border: 1px solid var(--grid-line);
  border-left: 8px solid var(--signal);
  border-radius: 3px 24px 3px 3px;
}

.document-icon {
  background: var(--navy-900);
  border-radius: 2px 12px 2px 2px;
}

.contact {
  border-top: 8px solid var(--signal);
}

.contact-background::after {
  background: linear-gradient(90deg, rgba(0, 58, 135, 0.98) 0%, rgba(0, 58, 135, 0.93) 52%, rgba(0, 52, 116, 0.82) 100%);
}

.contact-form {
  border: 1px solid rgba(7, 26, 92, 0.12);
  border-radius: 4px 28px 4px 4px;
  box-shadow: 14px 18px 0 rgba(2, 10, 39, 0.24);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 4px;
}

.page-hero {
  padding: 132px 0 70px;
  background: #003a87;
}

.page-hero .eyebrow {
  color: var(--signal);
}

.page-hero-media {
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 5px 5px 44px 5px;
  box-shadow: 14px 17px 0 var(--signal);
  animation: none;
}

.page-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 8px solid var(--signal);
  background:
    linear-gradient(90deg, rgba(82, 104, 255, 0.18), transparent 45%),
    var(--navy-900);
}

.detail-list li {
  background: var(--paper);
  border-color: var(--grid-line);
  border-radius: 3px 14px 3px 3px;
  box-shadow: none;
}

.detail-list li > span {
  color: var(--navy-950);
  background: var(--signal);
  border-radius: 2px 8px 2px 2px;
}

.site-footer {
  border-top: 1px solid rgba(255, 195, 61, 0.28);
}

.footer-grid h2 {
  color: var(--signal);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .hero-grid {
    gap: 42px;
  }

  .workboard-inner {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .workboard-steps li {
    padding-inline: 15px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 76px 0;
  }

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

  .hero-copy h1 {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 680px;
  }

  .workboard-inner {
    grid-template-columns: 1fr;
  }

  .workboard-intro {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--grid-line);
  }

  .workboard-intro strong {
    max-width: none;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    grid-column: span 6;
  }

  .service-card:nth-child(9) {
    grid-column: 1 / -1;
  }

  .testimonial-card:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 62px 0;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .hero {
    padding: 112px 0 46px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .hero-points {
    gap: 10px;
  }

  .hero-points li,
  .hero-points li + li {
    padding: 0;
    border-left: 0;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual::before {
    right: 0;
  }

  .hero-image-frame {
    inset: 14px 8px 0;
  }

  .floating-card-top {
    top: 54px;
    left: 0;
  }

  .floating-card-bottom {
    right: 0;
    bottom: 24px;
  }

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

  .workboard-steps li {
    min-height: 96px;
  }

  .workboard-steps li:nth-child(3) {
    border-left: 0;
  }

  .workboard-steps li:nth-child(n + 3) {
    border-top: 1px solid var(--grid-line);
  }

  .experience-card {
    right: 14px;
    width: 124px;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(9) {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 24px;
  }

  .service-card:nth-child(9) {
    padding-right: 24px;
  }

  .process-grid {
    border-top: 0;
  }

  .process-step {
    min-height: auto;
    padding: 28px 0;
    border-top: 1px solid var(--grid-line);
  }

  .process-step + .process-step {
    border-left: 0;
  }

  .page-hero {
    padding: 108px 0 60px;
  }

  .page-hero-media {
    box-shadow: 8px 10px 0 var(--signal);
  }

  .why-visual {
    border-left-width: 6px;
  }

  .industries-card {
    box-shadow: 9px 12px 0 #dfe4f2;
  }
}

/* Keep the selected cinematic hero above the earlier workboard layer. */

body .hero-cinematic {
  min-height: 710px;
  padding: 0;
  background: #003a87;
  animation: none;
}

.workboard.workboard {
  color: var(--white);
  background: #003a87;
  border: 0;
}

.hero.hero-cinematic .button-primary {
  color: var(--white);
  background: #054593;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 21, 61, 0.28);
}

.hero.hero-cinematic .button-primary:hover,
.hero.hero-cinematic .button-primary:focus-visible {
  color: var(--white);
  background: #0a65d6;
  box-shadow: 0 15px 32px rgba(0, 21, 61, 0.34);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  body .hero-cinematic {
    min-height: 700px;
    padding: 0;
  }
}

@media (max-width: 640px) {
  body .hero-cinematic {
    min-height: 690px;
    padding: 0;
  }
}

/* Exact selected homepage composition */

.site-header::after {
  display: none;
}

.header-inner {
  width: min(1344px, calc(100% - 7.5vw));
  grid-template-columns: 190px 1fr auto;
  gap: 36px;
}

.brand img {
  width: 185px;
}

.site-nav {
  justify-content: flex-end;
  gap: clamp(28px, 3.3vw, 52px);
}

.site-nav > a,
.nav-menu > summary {
  color: #121b2f;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.nav-menu {
  position: relative;
}

.nav-menu > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  list-style: none;
}

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

.nav-menu > summary span {
  font-size: 1rem;
  transition: transform 160ms ease;
}

.nav-menu[open] > summary span {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  display: grid;
  width: 250px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 26, 92, 0.16);
}

.nav-dropdown-right {
  right: -18px;
  left: auto;
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 600;
}

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

.header-cta {
  min-width: 172px;
  min-height: 45px;
  padding: 11px 20px;
  border-radius: 3px;
  font-weight: 500;
  box-shadow: 0 7px 16px rgba(0, 58, 135, 0.18);
}

body .hero-cinematic,
.hero-cinematic-inner {
  min-height: 716px;
}

.hero-cinematic-inner {
  width: min(1344px, calc(100% - 9.6vw));
  padding-top: 118px;
  padding-bottom: 36px;
}

.hero-cinematic .hero-copy {
  width: 780px;
  padding: 0;
  margin-top: 74px;
}

.hero-cinematic .hero-copy h1 {
  width: 780px;
  max-width: 100%;
  margin-bottom: 18px;
  font-size: clamp(3.15rem, 3.9vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.hero-title-rule {
  width: 86px;
  height: 5px;
  margin-bottom: 24px;
}

.hero-cinematic .hero-lead {
  width: 620px;
  max-width: 100%;
  margin-bottom: 28px;
  font-size: 1.17rem;
  line-height: 1.55;
}

.hero-cinematic .button {
  min-width: 188px;
  min-height: 51px;
  padding: 13px 24px;
  border-radius: 3px;
  font-weight: 500;
}

.hero-poster {
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 38, 88, 0.98) 0%,
      rgba(0, 48, 111, 0.95) 26%,
      rgba(0, 42, 98, 0.79) 48%,
      rgba(0, 30, 72, 0.45) 73%,
      rgba(0, 22, 54, 0.44) 100%
    );
}

.workboard-flow {
  width: min(1180px, calc(100% - 9.6vw));
  min-height: 95px;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 0.8fr) 150px minmax(0, 1.2fr);
  gap: 18px;
}

.workboard-flow > span:not(.workboard-arrow) {
  font-size: 0.97rem;
  font-weight: 500;
}

.workboard-arrow {
  color: var(--signal);
  font-size: 2.45rem;
  font-weight: 300;
}

.value-statement {
  padding: 58px 0 72px;
  background: var(--paper);
}

.value-statement-grid {
  display: grid;
  width: min(1230px, calc(100% - 9.6vw));
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 70px;
}

.value-statement .eyebrow {
  margin-bottom: 18px;
  color: #d79a16;
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.value-statement .eyebrow::before {
  display: none;
}

.value-statement h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.value-statement-copy p {
  max-width: 520px;
  margin-bottom: 0;
  color: #313b50;
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 165px 1fr auto;
    gap: 20px;
  }

  .brand img {
    width: 150px;
  }

  .site-nav {
    gap: 22px;
  }

  .header-cta {
    min-width: 150px;
  }
}

@media (max-width: 900px) {
  .header-inner,
  .hero-cinematic-inner,
  .workboard-flow,
  .value-statement-grid {
    width: min(100% - 40px, var(--container));
  }

  .site-nav {
    justify-content: stretch;
  }

  .nav-menu > summary {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown,
  .nav-dropdown-right {
    position: static;
    width: 100%;
    padding: 4px 0 10px 14px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

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

  body .hero-cinematic,
  .hero-cinematic-inner {
    min-height: 700px;
  }

  .hero-cinematic .hero-copy {
    width: min(720px, 92%);
    margin-top: 54px;
  }

  .hero-cinematic .hero-copy h1 {
    font-size: clamp(2.75rem, 6.7vw, 3.35rem);
    line-height: 1.1;
  }

  .value-statement-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-cinematic-inner,
  .workboard-flow,
  .value-statement-grid {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 122px;
  }

  body .hero-cinematic,
  .hero-cinematic-inner {
    min-height: 650px;
  }

  .hero-cinematic-inner {
    padding-top: 92px;
    padding-bottom: 40px;
  }

  .hero-cinematic .hero-copy {
    width: 100%;
    margin-top: 34px;
  }

  .hero-cinematic .hero-copy h1 {
    width: 100%;
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    line-height: 1.1;
  }

  .hero-cinematic .hero-lead {
    width: 340px;
    font-size: 1rem;
  }

  .hero-cinematic .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .workboard-flow {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .workboard-arrow {
    transform: rotate(90deg);
  }

  .value-statement {
    padding: 48px 0 56px;
  }

  .value-statement h2 {
    font-size: clamp(2.45rem, 11vw, 3.15rem);
  }
}

/* 2026-07-27: Final static full-site direction */

:root {
  --jvas-blue: #003a87;
  --jvas-blue-dark: #002a5e;
  --jvas-blue-soft: #eaf1fb;
  --jvas-yellow: #ffc33d;
  --jvas-paper: #fbfaf7;
  --jvas-ink: #111a2c;
  --jvas-line: #d8deea;
}

/* Jean selected a still-image experience. Keep every decorative surface static. */
.hero,
.page-hero,
.hero-image-frame,
.page-hero-media,
.floating-card,
.why-visual-card {
  animation: none;
}

.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.button,
.service-card,
.process-step,
.page-hero-media img,
.why-visual > img,
.service-link span {
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button:hover,
.button:focus-visible,
.service-card:hover,
.process-step:hover,
.page-hero-media:hover img,
.why-visual:hover > img,
.service-link:hover span,
.service-link:focus-visible span {
  transform: none;
}

.site-header {
  height: 88px;
}

.site-header.is-scrolled {
  height: 78px;
}

.brand img {
  width: 170px;
}

.site-nav > a[aria-current="page"],
.nav-menu > summary[aria-current="page"] {
  color: var(--jvas-blue);
}

.section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  max-width: 780px;
}

.eyebrow {
  color: var(--jvas-blue);
  font-weight: 750;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  width: 42px;
  background: var(--jvas-yellow);
}

.button {
  min-height: 48px;
  border-radius: 3px;
  font-weight: 650;
}

.button-primary {
  background: var(--jvas-blue);
  box-shadow: 0 8px 18px rgba(0, 58, 135, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #075fc9;
  box-shadow: 0 8px 18px rgba(0, 58, 135, 0.25);
}

/* Inner-page mastheads use one strong blue field and an unframed real photo. */
.page-hero {
  position: relative;
  min-height: 540px;
  padding: 88px 0 0;
  color: var(--white);
  background: var(--jvas-blue);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 88px auto 0 0;
  width: 8px;
  background: var(--jvas-yellow);
}

.page-hero-grid {
  width: min(1344px, calc(100% - 7.5vw));
  min-height: 452px;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
  gap: 58px;
}

.page-hero-copy {
  padding: 54px 0;
}

.page-hero .eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero .eyebrow::before {
  background: var(--jvas-yellow);
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.5vw, 4.55rem);
  font-weight: 550;
  line-height: 1.06;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.page-hero-media {
  align-self: stretch;
  height: 452px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 58, 135, 0.5), transparent 34%);
  pointer-events: none;
}

.page-hero-media img {
  object-position: center;
}

/* Crisp editorial grids replace the repeated floating-card treatment. */
.services {
  background: var(--jvas-paper);
}

.service-grid {
  gap: 0;
  border-top: 1px solid var(--jvas-line);
  border-left: 1px solid var(--jvas-line);
}

.service-card,
.service-card-accent {
  min-height: 290px;
  padding: 32px;
  color: var(--jvas-ink);
  background: rgba(255, 255, 255, 0.75);
  border: 0;
  border-right: 1px solid var(--jvas-line);
  border-bottom: 1px solid var(--jvas-line);
  border-radius: 0;
  box-shadow: none;
}

.service-card::before {
  display: none;
}

.service-card:hover {
  color: var(--jvas-ink);
  background: var(--white);
  border-color: var(--jvas-line);
  box-shadow: inset 0 5px 0 var(--jvas-yellow);
}

.service-card:hover p {
  color: var(--muted);
}

.service-card:hover .service-number,
.service-card:hover .service-link {
  color: var(--jvas-blue);
}

.service-card h3 {
  margin-top: 62px;
  font-size: 1.48rem;
  font-weight: 650;
}

.service-card-accent {
  color: var(--white);
  background: var(--jvas-blue);
}

.service-card:nth-child(1):hover,
.service-card-accent:hover {
  color: var(--white);
  background: #054593;
}

.service-card:nth-child(1):hover p,
.service-card-accent:hover p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card:nth-child(1):hover .service-number,
.service-card:nth-child(1):hover .service-link,
.service-card-accent:hover .service-number,
.service-card-accent:hover .service-link {
  color: var(--white);
}

.service-card-accent p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card-accent .service-number,
.service-card-accent .service-link {
  color: var(--white);
}

.service-number {
  color: var(--jvas-blue);
}

.service-number::after {
  background: var(--jvas-yellow);
}

.process-grid {
  gap: 0;
  border-top: 1px solid var(--jvas-line);
  border-bottom: 1px solid var(--jvas-line);
}

.process-step {
  min-height: 255px;
  padding: 32px 36px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.process-step + .process-step {
  border-left: 1px solid var(--jvas-line);
}

.process-step:hover {
  background: var(--jvas-blue-soft);
  border-color: var(--jvas-line);
  box-shadow: none;
}

.process-step > span {
  width: auto;
  height: auto;
  place-items: start;
  color: var(--jvas-blue);
  background: transparent;
  border-radius: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.process-step h3 {
  margin-top: 42px;
  font-size: 1.45rem;
}

/* Photo and trust sections stay bold without decorative movement. */
.about-grid {
  gap: 72px;
}

.photo-main,
.photo-secondary {
  border-radius: 0;
  box-shadow: none;
}

.photo-main {
  border-left: 8px solid var(--jvas-yellow);
}

.photo-secondary {
  border: 8px solid var(--white);
}

.experience-card {
  border-radius: 0;
  background: var(--jvas-blue);
  box-shadow: none;
}

.trust-list > div {
  padding: 17px 0;
}

.why {
  background: var(--jvas-blue-dark);
}

.why-visual {
  min-height: 540px;
  border: 0;
  border-left: 8px solid var(--jvas-yellow);
  border-radius: 0;
  box-shadow: none;
}

.why-visual > img {
  min-height: 540px;
}

.why-visual-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.why-list span {
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
}

.industries {
  background: var(--jvas-paper);
}

.industries-card {
  min-height: 620px;
  border-radius: 0;
  box-shadow: none;
}

.industries-card::after {
  background: linear-gradient(90deg, rgba(0, 43, 99, 0.98) 0%, rgba(0, 52, 116, 0.92) 48%, rgba(0, 32, 77, 0.18) 100%);
}

.industries-content {
  padding: 64px;
}

.industries-content li {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
}

/* Service detail pages read as structured scopes, not a wall of cards. */
.service-detail,
.service-fit {
  background: var(--white);
}

.service-fit {
  background: var(--jvas-blue-soft);
}

.service-detail-grid {
  gap: 64px;
}

.detail-list {
  gap: 0;
  border-top: 1px solid var(--jvas-line);
  border-left: 1px solid var(--jvas-line);
}

.detail-list li,
.service-detail .detail-list li {
  min-height: 104px;
  padding: 22px;
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--jvas-line);
  border-bottom: 1px solid var(--jvas-line);
  border-radius: 0;
  box-shadow: none;
}

.detail-list li > span {
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
}

.detail-list.compact li {
  min-height: 78px;
}

/* Quotes and documents use strong rules instead of generic rounded panels. */
.testimonials {
  background: var(--white);
}

.testimonial-grid {
  gap: 34px;
}

.testimonial-card {
  min-height: 330px;
  padding: 28px 0 0;
  background: transparent;
  border: 0;
  border-top: 5px solid var(--jvas-yellow);
  border-radius: 0;
  box-shadow: none;
}

.testimonial-card blockquote {
  color: #283247;
  font-size: 1.04rem;
  line-height: 1.75;
}

.document-card {
  padding: 34px 38px;
  background: var(--jvas-blue-soft);
  border: 0;
  border-left: 8px solid var(--jvas-blue);
  border-radius: 0;
}

.document-icon {
  border-radius: 0;
  background: var(--jvas-blue);
}

/* Contact and footer finish with the same blue, yellow, and square geometry. */
.contact {
  background: var(--jvas-blue-dark);
}

.contact-background::after {
  background: linear-gradient(90deg, rgba(0, 40, 91, 0.98) 0%, rgba(0, 52, 116, 0.93) 52%, rgba(0, 41, 94, 0.78) 100%);
}

.contact-form {
  border: 0;
  border-top: 6px solid var(--jvas-yellow);
  border-radius: 0;
  box-shadow: 18px 18px 0 rgba(0, 17, 48, 0.28);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 2px;
}

.page-cta {
  padding: 48px 0;
  background: var(--jvas-blue);
  border-top: 6px solid var(--jvas-yellow);
}

.site-footer {
  background: #002b62;
}

@media (max-width: 1050px) {
  .brand img {
    width: 150px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(380px, 0.9fr) minmax(400px, 1.1fr);
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    height: 76px;
  }

  .section {
    padding: 74px 0;
  }

  .page-hero {
    min-height: auto;
    padding-top: 76px;
  }

  .page-hero::before {
    top: 76px;
  }

  .page-hero-grid {
    width: min(100% - 40px, var(--container));
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 24px;
  }

  .page-hero-copy {
    padding: 42px 0;
  }

  .page-hero-media {
    width: calc(100% + 40px);
    max-width: none;
    height: 390px;
    margin-left: -20px;
  }

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

  .process-step {
    min-height: 240px;
    padding: 28px;
  }

  .about-grid,
  .why-grid,
  .service-detail-grid,
  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  .brand img {
    width: 118px;
  }

  .page-hero-grid {
    width: min(100% - 28px, var(--container));
    padding-top: 16px;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.35rem);
  }

  .page-hero-media {
    width: calc(100% + 28px);
    height: 290px;
    margin-left: -14px;
  }

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

  .service-card {
    min-height: 245px;
    padding: 26px;
  }

  .service-card h3 {
    margin-top: 54px;
  }

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

  .process-step {
    min-height: auto;
    padding: 26px 0;
  }

  .process-step + .process-step {
    border-top: 1px solid var(--jvas-line);
    border-left: 0;
  }

  .process-step h3 {
    margin-top: 24px;
  }

  .why-visual,
  .why-visual > img {
    min-height: 420px;
  }

  .industries-content {
    padding: 28px 22px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .document-card {
    padding: 28px 24px;
  }

  .contact-form {
    padding: 24px;
    box-shadow: 9px 9px 0 rgba(0, 17, 48, 0.28);
  }
}

/* 2026-07-31: AI & Automation homepage feature band and service chip */
.ai-feature {
  color: var(--white);
  background: var(--jvas-blue-dark);
  border-top: 6px solid var(--jvas-yellow);
}

.ai-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 72px;
}

.ai-feature .eyebrow {
  color: #cfdcf5;
}

.ai-chip {
  display: inline-block;
  margin-right: 12px;
  padding: 4px 10px;
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
  border-radius: 2px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-feature h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.9rem, 2.9vw, 2.6rem);
  line-height: 1.2;
}

.ai-feature-lead {
  max-width: 520px;
  margin-bottom: 30px;
  color: #c3d2ec;
  line-height: 1.75;
}

.ai-feature .button-primary {
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
  box-shadow: 7px 7px 0 rgba(0, 12, 33, 0.32);
}

.ai-feature .button-primary:hover,
.ai-feature .button-primary:focus-visible {
  background: #ffd268;
  box-shadow: 4px 4px 0 rgba(0, 12, 33, 0.34);
}

.ai-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.ai-feature-list article {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ai-feature-list h3 {
  position: relative;
  margin-bottom: 8px;
  padding-top: 14px;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 750;
}

.ai-feature-list h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 4px;
  background: var(--jvas-yellow);
}

.ai-feature-list p {
  color: #b7c7e4;
  font-size: 0.93rem;
  line-height: 1.65;
}

.service-chip-new {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 8px;
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
  border-radius: 2px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

@media (max-width: 980px) {
  .ai-feature-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ai-feature-lead {
    max-width: 640px;
  }
}

@media (max-width: 620px) {
  .ai-feature-list {
    grid-template-columns: 1fr;
  }
}

/* 2026-07-31: Graphic masthead variant for pages using an illustration instead of a photo */
.page-hero-graphic .page-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.page-hero-graphic .page-hero-media::after {
  display: none;
}

.page-hero-graphic .page-hero-media img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(12px 12px 0 rgba(0, 12, 33, 0.28));
}

@media (max-width: 1050px) {
  .page-hero-graphic .page-hero-media img {
    height: auto;
    width: 100%;
  }
}

/* 2026-08-01: Flagship emphasis for AI & Automation */
.hero-ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  padding: 9px 16px 9px 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.hero-ai-chip:hover,
.hero-ai-chip:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-ai-chip .ai-chip {
  margin-right: 0;
}

.service-card-accent .service-chip-new {
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
}

/* 2026-08-01: Tool-stack chips (homepage strip + AI page section) */
.tools-strip {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--jvas-line);
  text-align: center;
}

.tools-strip .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}

.tools-strip .eyebrow::before {
  display: none;
}

.tool-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  max-width: 980px;
  margin: 0 auto;
}

.tool-chip {
  color: var(--jvas-ink);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.tools-section .section-heading p {
  max-width: 560px;
}

.tools-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px 36px;
}

.tools-group h3 {
  margin-bottom: 16px;
  color: var(--jvas-blue);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tools-group .tool-chips {
  justify-content: flex-start;
  margin: 0;
}

.tools-footnote {
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* 2026-08-01: Founder section on About */
.founder {
  background: var(--white);
  border-top: 1px solid var(--jvas-line);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.founder-photo {
  position: relative;
}

.founder-photo::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 110px;
  height: 8px;
  background: var(--jvas-yellow);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--jvas-line);
  box-shadow: 14px 14px 0 rgba(0, 23, 64, 0.12);
}

.founder-name {
  margin-top: 22px;
}

.founder-name strong {
  display: block;
  color: var(--jvas-ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.founder-name span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .founder-photo {
    max-width: 420px;
  }
}

/* 2026-08-01: Animated tool-logo marquee (Jean explicitly requested this animation;
   reduced-motion users get a static wrapped row per the still-image rule) */
.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tool-chip img {
  display: block;
  width: 20px;
  height: 20px;
}

.tools-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.tools-marquee-track {
  display: flex;
  width: max-content;
  animation: tools-scroll 42s linear infinite;
}

.tools-marquee:hover .tools-marquee-track,
.tools-marquee:focus-within .tools-marquee-track {
  animation-play-state: paused;
}

.tool-chips-row {
  display: flex;
  gap: 38px;
  padding-right: 38px;
}

.tool-chips-row .tool-chip {
  flex: none;
}

@keyframes tools-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

  .tools-marquee-track {
    width: auto;
    animation: none;
  }

  .tool-chips-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tool-chips-row[aria-hidden="true"] {
    display: none;
  }
}

/* 2026-08-01: Equal-width CTA pair in the AI feature band */
.ai-feature .button-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  max-width: 560px;
}

.ai-feature .button-row .button {
  width: 100%;
}

/* 2026-08-01: Testimonial cards aligned — no stagger, author rows bottom-pinned */
.testimonial-card,
.testimonial-card:nth-child(2) {
  margin-top: 0;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  flex: 1;
}

/* 2026-08-01: Keep compound words together in headings */
.text-nowrap {
  white-space: nowrap;
}

/* 2026-08-01: Masthead variants so inner pages stop sharing one identical layout */

/* Framed — photo inset in a workboard card instead of bleeding off the top */
.page-hero--framed .page-hero-grid {
  align-items: center;
}

.page-hero--framed .page-hero-media {
  position: relative;
  align-self: center;
  height: auto;
  margin: 56px 0;
  overflow: visible;
}

.page-hero--framed .page-hero-media img {
  height: auto;
  max-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 16px 16px 0 rgba(0, 12, 33, 0.35);
}

.page-hero--framed .page-hero-media::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 110px;
  height: 8px;
  background: var(--jvas-yellow);
}

.page-hero--framed .page-hero-media::after {
  display: none;
}

/* Banner — full-width photo behind centered copy */
.page-hero--banner {
  position: relative;
  overflow: hidden;
}

.page-hero--banner .page-hero-media {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
}

.page-hero--banner .page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--banner .page-hero-media::after {
  display: block;
  inset: 0;
  background: linear-gradient(rgba(0, 30, 70, 0.9), rgba(0, 36, 84, 0.84));
}

.page-hero--banner .page-hero-grid {
  position: relative;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.page-hero--banner .page-hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero--banner .page-hero-copy {
  max-width: 780px;
}

.page-hero--banner .page-hero-copy h1,
.page-hero--banner .page-hero-copy > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.page-hero--banner .eyebrow {
  justify-content: center;
}

/* Center — typographic masthead, no photo */
.page-hero--center {
  min-height: 0;
}

.page-hero--center .page-hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  min-height: 0;
}

.page-hero--center .page-hero-copy {
  max-width: 840px;
  padding: 84px 0 72px;
}

.page-hero--center .page-hero-copy h1,
.page-hero--center .page-hero-copy > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.page-hero--center .eyebrow {
  justify-content: center;
}

@media (max-width: 1050px) {
  .page-hero--banner .page-hero-grid,
  .page-hero--center .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero--framed .page-hero-media {
    margin: 0 0 48px;
  }
}

/* 2026-08-01: AI & Automation flagship page — offer cards, step ladder, fit band */
.ai-offerings {
  background: var(--white);
}

.ai-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.ai-offer-card {
  position: relative;
  padding: 34px 34px 30px;
  background: var(--white);
  border: 1px solid var(--jvas-line);
  border-top: 5px solid var(--jvas-yellow);
  box-shadow: 10px 10px 0 rgba(0, 23, 64, 0.07);
}

.ai-offer-number {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.ai-offer-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 750;
}

.ai-offer-card > p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.ai-offer-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--jvas-line);
  list-style: none;
}

.ai-offer-card li {
  position: relative;
  padding-left: 26px;
  color: #3f485a;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ai-offer-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--jvas-blue);
  font-weight: 800;
}

.ai-ladder {
  background: var(--jvas-blue-soft);
}

.ai-ladder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.ai-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 34px;
}

.ai-steps li:last-child {
  padding-bottom: 0;
}

.ai-steps li::before {
  content: "";
  position: absolute;
  top: 52px;
  bottom: 0;
  left: 25px;
  width: 2px;
  background: var(--jvas-line);
}

.ai-steps li:last-child::before {
  display: none;
}

.ai-steps li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--jvas-blue);
  font-size: 0.95rem;
  font-weight: 850;
}

.ai-step-care > span {
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
}

.ai-steps h3 {
  margin: 4px 0 6px;
  font-size: 1.12rem;
  font-weight: 750;
}

.ai-steps h3 em {
  margin-left: 10px;
  padding: 3px 8px;
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
  border-radius: 2px;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

.ai-steps p {
  color: #3f485a;
  font-size: 0.96rem;
  line-height: 1.65;
}

.ai-fit-band {
  color: var(--white);
  background: var(--jvas-blue-dark);
  border-top: 6px solid var(--jvas-yellow);
}

.ai-fit-band .section-heading h2 {
  color: var(--white);
}

.ai-fit-band .section-heading p {
  color: #c3d2ec;
}

.ai-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.ai-fit-grid > div {
  display: flex;
  gap: 16px;
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ai-fit-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--jvas-blue-dark);
  background: var(--jvas-yellow);
  font-weight: 850;
}

.ai-fit-grid p {
  color: #dbe5f5;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .ai-offer-grid {
    grid-template-columns: 1fr;
  }

  .ai-ladder-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 640px) {
  .ai-fit-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026-08-01: Motion system — Jean explicitly requested element animations,
   superseding the earlier still-image direction. Scroll reveals re-enabled
   (main.js observer was kept intact), plus hover micro-interactions.
   All motion is disabled for prefers-reduced-motion users. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

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

  .js .reveal[data-delay="60"] { transition-delay: 90ms; }
  .js .reveal[data-delay="80"] { transition-delay: 120ms; }
  .js .reveal[data-delay="100"] { transition-delay: 150ms; }
  .js .reveal[data-delay="120"] { transition-delay: 180ms; }
  .js .reveal[data-delay="180"] { transition-delay: 240ms; }

  .service-card,
  .ai-offer-card,
  .process-step,
  .ai-feature-list article,
  .tools-group,
  .testimonial-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .service-card:hover,
  .ai-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 14px 16px 0 rgba(0, 23, 64, 0.12);
  }

  .service-card-accent:hover {
    box-shadow: 14px 16px 0 rgba(0, 12, 33, 0.3);
  }

  .process-step:hover {
    transform: translateY(-4px);
  }

  .ai-feature-list article {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .ai-feature-list article:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .button {
    transition: background-color 150ms ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .button-primary:hover,
  .button-primary:focus-visible {
    transform: translate(2px, 2px);
  }

  .hero-ai-chip:hover {
    transform: translateY(-2px);
  }

  .hero-ai-chip {
    transition: background-color 150ms ease, border-color 150ms ease, transform 0.2s ease;
  }

  .tool-chip {
    transition: transform 0.2s ease;
  }

  .tools-group .tool-chip:hover,
  .tools-marquee .tool-chip:hover {
    transform: translateY(-3px);
  }

  .site-nav > a,
  .nav-menu > summary {
    transition: color 150ms ease;
  }

  .founder-photo img,
  .page-hero--framed .page-hero-media img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .founder-photo:hover img,
  .page-hero--framed .page-hero-media:hover img {
    transform: translate(-4px, -4px);
    box-shadow: 20px 20px 0 rgba(0, 12, 33, 0.3);
  }
}

/* 2026-08-01: Footer social links */
.footer-social {
  display: flex;
  gap: 22px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--jvas-yellow);
}

.footer-social img {
  display: block;
  width: 18px;
  height: 18px;
}
