:root {
  --navy: #061724;
  --navy-2: #0a2a3d;
  --navy-3: #0f3a50;
  --orange: #ffb74b;
  --orange-deep: #d88712;
  --blue: #72c2e6;
  --blue-deep: #197ca8;
  --teal: #72acb0;
  --charcoal: #323232;
  --paper: #f7fafb;
  --white: #ffffff;
  --ink: #102a38;
  --muted: #627985;
  --line: #dce7ea;
  --dark-line: rgba(255, 255, 255, 0.14);
  --shell: min(1320px, calc(100vw - 48px));
  --radius: 24px;
  --shadow: 0 30px 80px rgba(5, 31, 45, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

::selection {
  background: var(--orange);
  color: var(--navy);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 200;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 92px;
  border-bottom: 1px solid rgba(9, 42, 61, 0.09);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(5, 24, 36, 0.06);
  backdrop-filter: blur(18px);
  transition: min-height 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  box-shadow: 0 14px 40px rgba(5, 24, 36, 0.12);
}

.header-inner {
  display: grid;
  width: min(1420px, calc(100vw - 48px));
  min-height: inherit;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: 245px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 2.4vw, 2.5rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.7rem 0;
  color: #334d5a;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 0.34rem;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  content: "";
  transition: right 0.18s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.7rem;
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  padding: 0.72rem 1rem 0.72rem 1.15rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 790;
  transition: transform 0.18s ease, background 0.18s ease;
}

.header-cta svg {
  color: var(--blue);
}

.header-cta:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: var(--navy);
}

.mobile-menu {
  display: none;
}

.section {
  position: relative;
  padding: clamp(5.4rem, 8vw, 9rem) 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

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

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 830;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker::before,
.eyebrow::before {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  content: "";
}

.dark-kicker,
.hero .eyebrow,
.inner-hero .eyebrow,
.contact-section .kicker,
.services-section .kicker,
.process-section .kicker {
  color: var(--blue);
}

.section-head {
  display: grid;
  margin-bottom: clamp(2.6rem, 4.5vw, 4.8rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 3rem;
}

.section-head h2,
.feature-copy h2,
.contact-copy h2,
.inner-copy h2,
.article-body h2 {
  max-width: 850px;
  margin: 0.75rem 0 0;
  font-size: clamp(2.45rem, 4.8vw, 5.25rem);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.section-head-side {
  max-width: 490px;
  justify-self: end;
}

.section-head-side p {
  margin: 0;
  color: inherit;
  font-size: 0.92rem;
  line-height: 1.72;
  opacity: 0.7;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.92rem 1.4rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 16px 42px rgba(255, 183, 75, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 52px rgba(255, 183, 75, 0.34);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark svg {
  color: var(--blue);
}

.button-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.text-link svg {
  color: var(--orange);
  transition: transform 0.18s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(960px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 92px 0 0;
  z-index: -4;
  background-image:
    linear-gradient(90deg, rgba(3, 17, 28, 0.98) 0%, rgba(3, 17, 28, 0.88) 43%, rgba(3, 17, 28, 0.22) 78%, rgba(3, 17, 28, 0.48) 100%),
    linear-gradient(180deg, rgba(3, 17, 28, 0.05) 52%, rgba(3, 17, 28, 0.96) 100%),
    url("/media/vibrafe/hero-ambiente-hospitalar.webp");
  background-position: center;
  background-size: cover;
}

.hero-grid {
  position: absolute;
  inset: 92px 0 0;
  z-index: -3;
  opacity: 0.24;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.union-orbit {
  position: absolute;
  z-index: -2;
  width: 54vw;
  height: 54vw;
  border: 2px solid rgba(114, 194, 230, 0.22);
  border-radius: 48% 52% 45% 55%;
  pointer-events: none;
}

.union-orbit::before,
.union-orbit::after {
  position: absolute;
  inset: 8%;
  border: 2px solid rgba(255, 183, 75, 0.17);
  border-radius: inherit;
  content: "";
}

.union-orbit::after {
  inset: 20%;
  border-color: rgba(114, 172, 176, 0.22);
}

.orbit-one {
  top: 7%;
  right: -30vw;
  transform: rotate(28deg);
  animation: drift 14s ease-in-out infinite alternate;
}

.orbit-two {
  right: 14vw;
  bottom: -47vw;
  width: 45vw;
  height: 45vw;
  opacity: 0.6;
  transform: rotate(-18deg);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.hero-inner {
  position: relative;
  display: grid;
  width: var(--shell);
  margin-inline: auto;
  padding: 190px 0 130px;
  grid-template-columns: minmax(0, 790px) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  margin-bottom: 1.4rem;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.35rem, 6vw, 6.65rem);
  font-weight: 645;
  letter-spacing: -0.064em;
  line-height: 0.93;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(90deg, var(--orange), #ffe0a8 42%, var(--blue) 78%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-copy {
  max-width: 700px;
  margin: 1.65rem 0 0;
  color: #c4d4dd;
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-proof {
  display: grid;
  max-width: 760px;
  margin-top: 2.5rem;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  background: var(--dark-line);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.hero-proof > div {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.15rem;
  background: rgba(5, 23, 37, 0.78);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  margin-bottom: 0.3rem;
  color: var(--white);
  font-size: 1.05rem;
}

.hero-proof span {
  color: #94aebb;
  font-size: 0.66rem;
  line-height: 1.4;
}

.hero-dossier {
  align-self: end;
  justify-self: end;
  width: min(350px, 100%);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  padding: 1.45rem;
  background: rgba(6, 28, 43, 0.82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.hero-dossier > span {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-dossier h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-dossier ul {
  display: grid;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.75rem;
}

.hero-dossier li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #bfd0d8;
  font-size: 0.76rem;
}

.hero-dossier li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(114, 172, 176, 0.12);
  content: "";
}

.service-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 2rem);
  overflow: hidden;
  border-top: 1px solid var(--dark-line);
  background: rgba(4, 18, 29, 0.92);
  color: #b8c9d2;
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(16px);
}

.service-rail i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.manifesto-band {
  overflow: hidden;
  padding: 2.8rem 0;
  background: linear-gradient(100deg, var(--orange) 0 48%, var(--blue) 52% 100%);
  color: var(--navy);
}

.manifesto-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.manifesto-band strong {
  max-width: 980px;
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.manifesto-band span {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 830;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.union-section {
  overflow: hidden;
}

.union-system {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: stretch;
}

.union-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3.2rem);
}

.union-card::after {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.14;
}

.legacy-card {
  border-radius: 28px 0 0 28px;
  background: #fff3df;
  color: var(--ink);
}

.legacy-card::after {
  right: -130px;
  bottom: -110px;
  color: var(--orange-deep);
}

.innovation-card {
  border-radius: 0 28px 28px 0;
  background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
  color: var(--white);
}

.innovation-card::after {
  top: -120px;
  left: -120px;
  color: var(--blue);
}

.union-card > span {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--orange-deep);
  font-size: 0.66rem;
  font-weight: 830;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.innovation-card > span {
  color: var(--blue);
}

.union-card h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.union-card p {
  max-width: 500px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.innovation-card p {
  color: #b5c9d3;
}

.union-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.75rem;
}

.union-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.union-list li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.innovation-card .union-list li::before {
  background: var(--blue);
}

.climatech-mark {
  width: 172px;
  margin-top: 2rem;
  opacity: 0.92;
}

.union-junction {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, #fff3df 0 50%, var(--navy-2) 50% 100%);
}

.union-junction::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(114, 172, 176, 0.28);
  box-shadow: 0 20px 60px rgba(4, 35, 50, 0.16);
  content: "";
  transform: translate(-50%, -50%);
}

.union-junction img {
  position: relative;
  width: 150px;
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(5, 32, 46, 0.22);
}

.union-outcomes {
  display: grid;
  margin-top: 1px;
  border-radius: 0 0 22px 22px;
  background: var(--navy);
  grid-template-columns: repeat(3, 1fr);
}

.union-outcomes div {
  min-height: 132px;
  border-right: 1px solid var(--dark-line);
  padding: 1.35rem;
}

.union-outcomes div:last-child {
  border-right: 0;
}

.union-outcomes strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 0.94rem;
}

.union-outcomes span {
  color: #89a5b4;
  font-size: 0.7rem;
  line-height: 1.5;
}

.metrics-section {
  padding: 2.6rem 0 3rem;
  border-bottom: 1px solid var(--line);
}

.metric-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.metric-grid article {
  min-height: 190px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem;
}

.metric-grid strong {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.metric-grid strong small {
  color: var(--blue-deep);
  font-size: 0.34em;
  letter-spacing: -0.02em;
}

.metric-grid span {
  display: block;
  max-width: 250px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.evidence-note {
  margin: 1rem 0 0;
  color: #6b808b;
  font-size: 0.67rem;
}

.services-section {
  overflow: hidden;
  background: var(--navy);
}

.services-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  mask-image: radial-gradient(circle at 80% 40%, #000, transparent 68%);
  pointer-events: none;
}

.services-section .section-head,
.capability-grid {
  position: relative;
}

.services-section .section-head-side {
  color: #b2c5cf;
}

.capability-grid {
  display: grid;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
  grid-template-columns: repeat(3, 1fr);
}

.capability-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.015);
  transition: background 0.2s ease, transform 0.2s ease;
}

.capability-card::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(114, 194, 230, 0.18);
  border-radius: 50%;
  content: "";
}

.capability-card:hover {
  z-index: 2;
  background: rgba(114, 194, 230, 0.08);
  transform: translateY(-6px);
}

.capability-card > span {
  align-self: flex-end;
  color: #6e8997;
  font-size: 0.65rem;
  font-weight: 800;
}

.capability-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-top: 2.4rem;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 15px;
  background: rgba(114, 194, 230, 0.08);
  color: var(--blue);
}

.capability-icon svg {
  width: 24px;
  height: 24px;
}

.capability-card:nth-child(3n + 1) .capability-icon {
  background: rgba(255, 183, 75, 0.09);
  color: var(--orange);
}

.capability-card h3 {
  margin: 1.25rem 0 0.75rem;
  font-size: 1.48rem;
  letter-spacing: -0.038em;
}

.capability-card p {
  max-width: 350px;
  margin: 0;
  color: #95acb8;
  font-size: 0.8rem;
  line-height: 1.62;
}

.capability-foot {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--dark-line);
  padding-top: 1rem;
  color: #87a0ad;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-foot svg {
  color: var(--orange);
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.evidence-collage {
  position: relative;
  min-height: 700px;
}

.evidence-collage figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #dce7e9;
  box-shadow: var(--shadow);
}

.evidence-collage figure:first-child {
  inset: 0 20% 12% 0;
}

.evidence-collage figure:last-child {
  inset: 38% 0 0 47%;
  border: 10px solid var(--white);
}

.evidence-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evidence-collage figcaption,
.project-card figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 0.62rem 0.8rem;
  background: rgba(4, 22, 34, 0.72);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.evidence-collage figcaption i,
.project-card figcaption i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.evidence-collage figure:last-child figcaption i {
  background: var(--blue);
}

.feature-copy > p {
  max-width: 590px;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.55;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  padding: 4px;
  background: rgba(114, 172, 176, 0.14);
  color: var(--blue-deep);
}

.feature-copy .button {
  margin-top: 2.2rem;
}

.projects-section {
  background: #071b2a;
}

.projects-section .section-head-side {
  color: #b2c5cf;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.project-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 24px;
  background: #173344;
  grid-column: span 4;
}

.project-card.project-wide {
  min-height: 500px;
  grid-column: span 8;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 17, 28, 0.65));
  content: "";
  pointer-events: none;
}

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

.project-card figcaption {
  z-index: 2;
}

.portfolio-section {
  overflow: hidden;
}

.logo-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
}

.logo-card {
  display: grid;
  min-height: 156px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  transition: background 0.18s ease, transform 0.18s ease;
}

.logo-card:hover {
  position: relative;
  z-index: 2;
  background: var(--white);
  transform: translateY(-4px);
}

.logo-card img {
  width: auto;
  max-width: 86%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.74;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.logo-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.partner-panel {
  position: relative;
  display: grid;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.partner-panel::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.partner-copy,
.partner-logos {
  position: relative;
}

.partner-copy h3 {
  max-width: 650px;
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.partner-copy p {
  max-width: 620px;
  margin: 1rem 0 0;
  color: #9fb5c1;
  font-size: 0.8rem;
  line-height: 1.62;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 210px));
  gap: 0.8rem;
}

.partner-logo {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 17px;
  padding: 1rem;
  background: var(--white);
}

.partner-logo img {
  width: auto;
  max-width: 90%;
  max-height: 62px;
  object-fit: contain;
}

.process-section {
  background: var(--navy);
}

.process-section .section-head-side {
  color: #aec2cd;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
  list-style: none;
  grid-template-columns: repeat(5, 1fr);
}

.process-grid li {
  min-height: 285px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  padding: 1.35rem;
}

.process-grid li > span {
  color: var(--orange);
  font-size: 0.67rem;
  font-weight: 830;
}

.process-grid li:nth-child(even) > span {
  color: var(--blue);
}

.process-grid h3 {
  margin: 4.4rem 0 0.75rem;
  font-size: 1.27rem;
  letter-spacing: -0.035em;
}

.process-grid p {
  margin: 0;
  color: #8fa7b4;
  font-size: 0.75rem;
  line-height: 1.58;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-card {
  display: flex;
  min-height: 405px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.45rem;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.blog-card time,
.article-meta {
  color: var(--blue-deep);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 2.5rem 0 0.9rem;
  color: var(--ink);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.62;
}

.blog-card .text-link {
  margin-top: auto;
  color: var(--ink);
}

.contact-section {
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-section::before {
  right: -14%;
  bottom: -65%;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(114, 194, 230, 0.18);
  box-shadow: inset 0 0 110px rgba(114, 194, 230, 0.05);
}

.contact-section::after {
  right: 12%;
  bottom: -72%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 183, 75, 0.16);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-copy > p {
  max-width: 530px;
  color: #a9bdc8;
  font-size: 0.9rem;
  line-height: 1.72;
}

.contact-direct {
  display: grid;
  margin-top: 2.4rem;
  gap: 0.85rem;
}

.contact-direct a,
.contact-direct span {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-direct svg {
  color: var(--orange);
}

.contact-direct div {
  display: grid;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 750;
}

.contact-direct small {
  margin-bottom: 0.18rem;
  color: #7f9aa8;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.section-light .form-panel,
.contact-page-grid .form-panel {
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
}

.lead-form label > span {
  color: #a8bdc8;
  font-size: 0.61rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-light .lead-form label > span,
.contact-page-grid .lead-form label > span {
  color: #58717d;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  padding: 0.88rem 0.95rem;
  background: rgba(4, 18, 30, 0.46);
  color: var(--white);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lead-form textarea {
  min-height: 132px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #78909c;
}

.lead-form select option {
  color: var(--ink);
}

.section-light .lead-form input,
.section-light .lead-form select,
.section-light .lead-form textarea,
.contact-page-grid .lead-form input,
.contact-page-grid .lead-form select,
.contact-page-grid .lead-form textarea {
  border-color: var(--line);
  background: #f3f8f9;
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(114, 194, 230, 0.14);
}

.form-note {
  margin: -0.2rem 0 0;
  color: #718994;
  font-size: 0.61rem;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  background: #03111c;
}

.footer-top {
  display: grid;
  padding: 4.8rem 0 3.8rem;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand img {
  width: 250px;
  border-radius: 6px;
  background: var(--white);
}

.footer-brand p {
  max-width: 350px;
  margin: 1.35rem 0 0;
  color: #829ba8;
  font-size: 0.77rem;
  line-height: 1.66;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
}

.footer-col strong {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: #8aa2af;
  font-size: 0.72rem;
  line-height: 1.5;
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-contact a:first-of-type {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 730;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--dark-line);
  padding: 1.35rem 0;
  color: #688392;
  font-size: 0.61rem;
}

.floating-contact {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 90;
}

.js .floating-contact {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.js .floating-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.floating-contact a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.62rem 1rem 0.62rem 0.66rem;
  background: linear-gradient(135deg, #087044, #18a76a);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  color: var(--white);
  transition: transform 0.18s ease;
}

.floating-contact a:hover {
  transform: translateX(-4px);
}

.floating-contact i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-style: normal;
}

.floating-contact span {
  display: grid;
  font-size: 0.69rem;
  font-weight: 790;
}

.floating-contact small {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.56rem;
  font-weight: 550;
}

.inner-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  align-items: end;
  background: var(--navy);
}

.inner-hero-bg {
  position: absolute;
  inset: 92px 0 0;
  z-index: -1;
}

.inner-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-bg span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 17, 28, 0.98) 0%, rgba(3, 17, 28, 0.83) 48%, rgba(3, 17, 28, 0.34) 100%), linear-gradient(180deg, rgba(3, 17, 28, 0.08), rgba(3, 17, 28, 0.9));
}

.inner-hero-content {
  padding: 180px 0 84px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 4rem;
  color: #94aab6;
  font-size: 0.63rem;
}

.breadcrumb a {
  color: #d5e2e8;
}

.breadcrumb a::after {
  margin-left: 0.45rem;
  color: #637e8c;
  content: "/";
}

.inner-hero h1 {
  max-width: 1000px;
  margin: 0.8rem 0 0;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 650;
  letter-spacing: -0.062em;
  line-height: 0.93;
}

.inner-hero-content > p {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: #c2d2db;
  font-size: 1rem;
  line-height: 1.7;
}

.story-timeline {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.story-timeline article {
  min-height: 330px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem;
}

.story-timeline article > span {
  color: var(--orange-deep);
  font-size: 0.66rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-timeline article:nth-child(2) > span {
  color: var(--blue-deep);
}

.story-timeline article:nth-child(3) > span {
  color: #4e898d;
}

.story-timeline h2 {
  margin: 4.2rem 0 0.8rem;
  color: var(--ink);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.story-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.service-detail-list {
  display: grid;
  gap: 1.2rem;
}

.service-detail {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--white);
  grid-template-columns: 0.78fr 1.22fr;
}

.service-detail figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #dce7e9;
}

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

.service-detail > div {
  padding: clamp(1.8rem, 4vw, 3.4rem);
}

.service-detail small {
  color: var(--blue-deep);
  font-size: 0.64rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-detail h2 {
  margin: 0.75rem 0 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  letter-spacing: -0.052em;
  line-height: 1;
}

.service-detail p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.72;
}

.scope-list {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #48636f;
  font-size: 0.74rem;
  line-height: 1.45;
}

.scope-list li::before {
  width: 7px;
  height: 7px;
  margin-top: 0.33rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.project-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.archive-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.archive-card figure {
  height: 390px;
  margin: 0;
  overflow: hidden;
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.archive-card:hover img {
  transform: scale(1.035);
}

.archive-copy {
  padding: 1.5rem;
}

.archive-copy small {
  color: var(--blue-deep);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.archive-copy h2 {
  margin: 0.65rem 0 0.75rem;
  color: var(--ink);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.archive-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.62;
}

.article-shell {
  max-width: 910px;
  margin-inline: auto;
}

.article-header {
  padding: 185px 0 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.article-header h1 {
  margin: 1rem 0 1.3rem;
  font-size: clamp(2.9rem, 5.8vw, 5.8rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.article-header p {
  max-width: 690px;
  margin: 0;
  color: #aec2cd;
  font-size: 0.9rem;
  line-height: 1.68;
}

.article-body {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--white);
  color: var(--ink);
}

.article-body p,
.article-body li {
  color: #475f6c;
  font-size: 1rem;
  line-height: 1.86;
}

.article-body h2 {
  margin-top: 3.2rem;
  font-size: clamp(2rem, 3.7vw, 3.7rem);
}

.article-body a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-lead {
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--orange);
  padding-left: 1.3rem;
  color: var(--ink) !important;
  font-size: 1.2rem !important;
}

.article-author {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-cards {
  display: grid;
  margin-top: 2.2rem;
  gap: 0.8rem;
}

.contact-cards a,
.contact-cards > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: var(--white);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.contact-cards a:hover {
  border-color: rgba(25, 124, 168, 0.48);
  transform: translateX(4px);
}

.contact-cards svg {
  width: 24px;
  height: 24px;
  color: var(--blue-deep);
}

.contact-cards span {
  display: grid;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 760;
}

.contact-cards small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-hero {
  padding: 180px 0 82px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.legal-hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.06em;
}

.legal-copy {
  max-width: 850px;
}

.legal-copy h2 {
  margin: 2.4rem 0 0.8rem;
  color: var(--ink);
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.78;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 150px 24px 80px;
  background: radial-gradient(circle at 72% 30%, #0e455d, var(--navy) 58%);
  text-align: center;
}

.not-found > div {
  max-width: 800px;
}

.not-found img {
  width: 110px;
  margin: 0 auto 2rem;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.not-found p {
  color: #a9bdc8;
}

.not-found .hero-actions {
  justify-content: center;
}

[data-reveal] {
  transform: translateY(0);
  opacity: 1;
}

.js [data-reveal]:not(.is-visible) {
  transform: translateY(24px);
  opacity: 0;
}

.js [data-reveal] {
  transition: transform 0.58s cubic-bezier(0.2, 0.72, 0.25, 1), opacity 0.58s ease;
}

@keyframes drift {
  from { transform: translate3d(0, -8px, 0) rotate(28deg); }
  to { transform: translate3d(-28px, 22px, 0) rotate(36deg); }
}

@media (max-width: 1160px) {
  .desktop-nav {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 92px 0 0;
    display: flex;
    flex-direction: column;
    padding: 2rem 5vw;
    background: rgba(255, 255, 255, 0.985);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-header.is-scrolled .mobile-menu {
    inset-block-start: 76px;
  }

  .mobile-menu[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 1.15rem 0;
    font-size: 1.35rem;
    font-weight: 650;
  }

  .mobile-menu a span {
    color: var(--blue-deep);
    font-size: 0.62rem;
  }

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

  .hero-dossier {
    display: none;
  }

  .union-system {
    grid-template-columns: 1fr 130px 1fr;
  }

  .union-junction img {
    width: 120px;
  }

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

  .project-card,
  .project-card.project-wide {
    grid-column: span 6;
  }

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

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

  .process-grid li:nth-child(n + 4) {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-top .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .site-header {
    min-height: 78px;
  }

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

  .header-inner {
    width: calc(100vw - 28px);
  }

  .brand {
    width: 202px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    inset-block-start: 78px;
  }

  .site-header.is-scrolled .mobile-menu {
    inset-block-start: 70px;
  }

  .hero-media,
  .hero-grid {
    inset-block-start: 78px;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(3, 17, 28, 0.4) 0%, rgba(3, 17, 28, 0.86) 42%, rgba(3, 17, 28, 0.99) 100%),
      url("/media/vibrafe/hero-ambiente-hospitalar.webp");
    background-position: 42% center;
  }

  .hero-inner {
    min-height: 920px;
    align-items: end;
    padding: 170px 0 128px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.65rem);
  }

  .hero-copy {
    font-size: 0.96rem;
  }

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

  .hero-proof > div {
    min-height: 70px;
  }

  .service-rail {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .manifesto-band .shell {
    display: grid;
    gap: 1rem;
  }

  .section-head,
  .evidence-layout,
  .contact-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-head-side {
    justify-self: start;
  }

  .union-system {
    grid-template-columns: 1fr;
  }

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

  .legacy-card {
    border-radius: 24px 24px 0 0;
  }

  .innovation-card {
    border-radius: 0 0 24px 24px;
  }

  .union-junction {
    min-height: 120px;
    background: linear-gradient(180deg, #fff3df 0 50%, var(--navy-2) 50% 100%);
  }

  .union-junction img {
    width: 110px;
  }

  .union-outcomes,
  .metric-grid,
  .story-timeline {
    grid-template-columns: 1fr;
  }

  .union-outcomes div {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .capability-grid,
  .blog-grid,
  .project-archive-grid {
    grid-template-columns: 1fr;
  }

  .evidence-collage {
    min-height: 600px;
  }

  .project-card,
  .project-card.project-wide {
    min-height: 380px;
    grid-column: 1 / -1;
  }

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

  .partner-panel {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid li:nth-child(n) {
    min-height: 220px;
    grid-column: auto;
  }

  .process-grid h3 {
    margin-top: 2.8rem;
  }

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

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

  .footer-top .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-hero-bg {
    inset-block-start: 78px;
  }

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

  .service-detail figure {
    min-height: 360px;
  }
}

@media (max-width: 540px) {
  :root {
    --shell: calc(100vw - 26px);
  }

  .brand {
    width: 178px;
  }

  .hero-inner {
    min-height: 890px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-head h2,
  .feature-copy h2,
  .contact-copy h2,
  .inner-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  .field-row,
  .scope-list {
    grid-template-columns: 1fr;
  }

  .evidence-collage {
    min-height: 510px;
  }

  .evidence-collage figure:first-child {
    inset: 0 8% 19% 0;
  }

  .evidence-collage figure:last-child {
    inset: 52% 0 0 34%;
    border-width: 7px;
  }

  .project-card,
  .project-card.project-wide {
    min-height: 340px;
  }

  .logo-card {
    min-height: 126px;
    padding: 0.8rem;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-top .footer-contact {
    grid-column: auto;
  }

  .floating-contact span {
    display: none;
  }

  .floating-contact a {
    padding: 0.58rem;
  }

  .archive-card figure {
    height: 300px;
  }
}

@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 [data-reveal]:not(.is-visible) {
    transform: none;
    opacity: 1;
  }
}

/* Brand direction v2 — Vibrafe leads; CLIMATECH appears as an incorporated competence. */
:root {
  --navy: #0d2f3e;
  --navy-2: #12485b;
  --navy-3: #176077;
  --paper: #f6f7f3;
  --ink: #25383f;
  --muted: #61747a;
  --line: #dbe6e4;
}

body {
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI Variable", "Helvetica Neue", Arial, sans-serif;
}

.site-header {
  min-height: 88px;
  border-bottom-color: rgba(37, 56, 63, 0.1);
  background: rgba(250, 251, 248, 0.96);
}

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

.brand {
  width: 238px;
}

.desktop-nav a {
  color: #465a61;
}

.header-cta {
  background: var(--charcoal);
}

.header-cta:hover {
  background: var(--teal);
}

.hero {
  min-height: 940px;
  background:
    radial-gradient(circle at 9% 34%, rgba(255, 183, 75, 0.13), transparent 27%),
    linear-gradient(120deg, #f9faf6 0%, #f3f7f4 53%, #e8f3f4 100%);
  color: var(--ink);
}

.hero-media {
  inset: 88px 0 62px auto;
  width: 48.5%;
  overflow: hidden;
  border-radius: 0 0 0 92px;
  background-image:
    linear-gradient(90deg, rgba(241, 247, 244, 0.92) 0%, rgba(13, 47, 62, 0.08) 25%, rgba(13, 47, 62, 0.15) 100%),
    linear-gradient(180deg, transparent 58%, rgba(13, 47, 62, 0.52) 100%),
    url("/media/vibrafe/hero-ambiente-hospitalar.webp");
  background-position: 43% center;
}

.hero-grid {
  inset: 88px 45% 62px 0;
  opacity: 0.42;
  background-image: linear-gradient(rgba(114, 172, 176, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(114, 172, 176, 0.1) 1px, transparent 1px);
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.hero-inner {
  padding: 168px 0 124px;
  grid-template-columns: minmax(0, 735px) minmax(270px, 1fr);
  gap: clamp(2rem, 4.5vw, 5rem);
}

.hero .eyebrow {
  color: #377d83;
}

.hero h1 {
  max-width: 760px;
  color: var(--charcoal);
  font-size: clamp(3.25rem, 5.7vw, 6.1rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 em {
  background: linear-gradient(92deg, #e89b2d 0%, var(--teal) 52%, #359fcf 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 665px;
  color: #546970;
}

.hero .button-secondary {
  border-color: rgba(37, 56, 63, 0.22);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.hero .button-secondary:hover {
  background: var(--white);
}

.hero-proof {
  border-color: rgba(37, 56, 63, 0.12);
  background: rgba(37, 56, 63, 0.09);
  box-shadow: 0 18px 60px rgba(35, 73, 82, 0.08);
}

.hero-proof > div {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.hero-proof strong {
  color: var(--charcoal);
}

.hero-proof span {
  color: #64777d;
}

.hero-dossier {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(250, 252, 249, 0.91);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(8, 49, 63, 0.2);
}

.hero-dossier > span {
  color: #b9740e;
}

.hero-dossier li {
  color: #587078;
}

.service-rail {
  min-height: 62px;
  border-top-color: var(--line);
  background: rgba(250, 251, 248, 0.96);
  color: #60747b;
}

.union-orbit {
  border-color: rgba(114, 194, 230, 0.2);
}

.orbit-one {
  right: -25vw;
}

.manifesto-band {
  padding: 2.5rem 0;
  background: linear-gradient(102deg, #fff0d5 0%, #fff5e5 46%, #dceff0 52%, #e4f5fa 100%);
  color: var(--charcoal);
}

.manifesto-band span {
  color: #42646c;
}

.union-section {
  background: #fafbf8;
}

.legacy-card {
  background: linear-gradient(145deg, #fff4e0, #fffaf0);
}

.innovation-card {
  background: linear-gradient(145deg, #e5f5fa, #dceef0);
  color: var(--ink);
}

.innovation-card > span {
  color: #3285a6;
}

.climatech-mark {
  width: 190px;
  margin-top: 1.7rem;
  border-radius: 12px;
  padding: 0.68rem 0.85rem;
  background: #123847;
  box-shadow: 0 12px 34px rgba(18, 56, 71, 0.12);
}

.innovation-card p {
  color: #587078;
}

.union-junction {
  background: linear-gradient(90deg, #fff8ea 0 50%, #e0f2f4 50% 100%);
}

.union-junction::before {
  background: rgba(114, 172, 176, 0.19);
  box-shadow: 0 20px 60px rgba(32, 92, 99, 0.12);
}

.union-junction img {
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 20px 24px rgba(43, 91, 95, 0.18));
}

.union-outcomes {
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
}

.union-outcomes div {
  border-right-color: var(--line);
}

.union-outcomes div:nth-child(1) {
  box-shadow: inset 0 5px var(--orange);
}

.union-outcomes div:nth-child(2) {
  box-shadow: inset 0 5px var(--teal);
}

.union-outcomes div:nth-child(3) {
  box-shadow: inset 0 5px var(--blue);
}

.union-outcomes strong {
  color: var(--ink);
}

.union-outcomes span {
  color: var(--muted);
}

.metrics-section {
  background: #ffffff;
  color: var(--ink);
}

.services-section {
  background:
    radial-gradient(circle at 85% 16%, rgba(114, 194, 230, 0.12), transparent 27%),
    radial-gradient(circle at 8% 86%, rgba(255, 183, 75, 0.08), transparent 25%),
    #ffffff;
  color: var(--ink);
}

.services-section::before {
  opacity: 0.5;
  background-image:
    linear-gradient(125deg, transparent 0 60%, rgba(255, 183, 75, 0.12) 60% 61.5%, transparent 61.5% 65%, rgba(114, 194, 230, 0.14) 65% 67%, transparent 67%),
    linear-gradient(rgba(114, 172, 176, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 172, 176, 0.06) 1px, transparent 1px);
  mask-image: none;
}

.services-section .kicker {
  color: #367d84;
}

.services-section .section-head-side {
  color: #52696f;
}

.capability-grid {
  grid-template-columns: repeat(4, 1fr);
  border-color: rgba(54, 106, 111, 0.18);
  gap: 1rem;
}

.capability-card {
  min-height: 345px;
  border: 1px solid rgba(54, 106, 111, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(41, 89, 96, 0.045);
  backdrop-filter: blur(18px);
}

.capability-card:hover {
  background: var(--white);
  box-shadow: 0 28px 70px rgba(41, 89, 96, 0.13);
}

.capability-card > span,
.capability-foot {
  color: #6c8389;
}

.capability-icon {
  border-color: rgba(54, 106, 111, 0.16);
  background: #eef8fa;
  color: #2a8eb8;
}

.capability-card:nth-child(3n + 1) .capability-icon {
  background: #fff5e4;
  color: #cf8211;
}

.capability-card h3 {
  color: var(--ink);
}

.capability-card p {
  color: #60747a;
}

.capability-foot {
  border-top-color: var(--line);
}

.partner-panel {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 20%, rgba(114, 194, 230, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #edf7f5);
  color: var(--ink);
}

.partner-copy p {
  color: #5c7177;
}

.partner-panel .dark-kicker {
  color: #397d83;
}

.process-section {
  background:
    radial-gradient(circle at 9% 82%, rgba(255, 183, 75, 0.09), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(114, 194, 230, 0.1), transparent 27%),
    #ffffff;
  color: var(--ink);
}

.process-section .kicker {
  color: #3b7f84;
}

.process-section .section-head-side,
.process-grid p {
  color: #587077;
}

.process-grid {
  border-color: rgba(46, 105, 110, 0.2);
}

.process-grid li {
  border-color: rgba(46, 105, 110, 0.2);
  background: rgba(250, 253, 252, 0.62);
  backdrop-filter: blur(16px);
}

.process-grid h3 {
  color: var(--ink);
}

.service-detail:nth-child(even) {
  grid-template-columns: 1.22fr 0.78fr;
}

.service-detail:nth-child(even) figure {
  order: 2;
}

.service-detail {
  border-color: #dce9e7;
  box-shadow: 0 20px 65px rgba(50, 92, 96, 0.06);
}

.service-detail figure {
  background: #eef5f3;
}

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

.contact-section {
  background:
    radial-gradient(circle at 88% 15%, rgba(114, 194, 230, 0.13), transparent 30%),
    radial-gradient(circle at 8% 86%, rgba(255, 183, 75, 0.09), transparent 28%),
    #f9fbf9;
  color: var(--ink);
}

.contact-section .kicker {
  color: #397d83;
}

.contact-copy > p {
  color: #5e7379;
}

.contact-direct a,
.contact-direct span {
  color: var(--ink);
}

.contact-direct small {
  color: #6c8187;
}

.contact-section .form-panel {
  border-color: rgba(65, 108, 111, 0.17);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 80px rgba(45, 88, 92, 0.1);
  backdrop-filter: blur(22px);
}

.contact-section .lead-form label > span {
  color: #526a70;
}

.contact-section .lead-form input,
.contact-section .lead-form select,
.contact-section .lead-form textarea {
  border-color: #d8e5e3;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.contact-section .lead-form input::placeholder,
.contact-section .lead-form textarea::placeholder {
  color: #98a8ab;
}

.contact-section .lead-form select option {
  background: #ffffff;
  color: var(--ink);
}

.contact-section .form-note {
  color: #74878b;
}

.contact-section .button-secondary {
  border-color: rgba(37, 56, 63, 0.2);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.floating-contact a {
  padding: 0.58rem;
}

.floating-contact i {
  width: 42px;
  height: 42px;
}

.floating-contact span {
  display: none;
}

.inner-hero {
  min-height: 700px;
  background:
    radial-gradient(circle at 10% 35%, rgba(255, 183, 75, 0.13), transparent 28%),
    linear-gradient(135deg, #f9faf6, #edf5f4);
  color: var(--ink);
}

.inner-hero-bg {
  inset: 88px 0 0 auto;
  width: 48%;
  overflow: hidden;
  border-radius: 0 0 0 88px;
}

.inner-hero-bg span {
  background: linear-gradient(90deg, rgba(239, 246, 244, 0.92) 0%, rgba(13, 47, 62, 0.08) 28%, rgba(13, 47, 62, 0.2) 100%), linear-gradient(180deg, transparent 60%, rgba(13, 47, 62, 0.4));
}

.inner-hero-content {
  padding: 164px 0 78px;
}

.inner-hero h1 {
  max-width: 760px;
  color: var(--charcoal);
  font-size: clamp(3.15rem, 5.5vw, 5.9rem);
}

.inner-hero .eyebrow {
  color: #367d84;
}

.inner-hero-content > p {
  max-width: 650px;
  color: #566c73;
}

.inner-hero .breadcrumb,
.inner-hero .breadcrumb a {
  color: #61757b;
}

.article-header {
  background: linear-gradient(135deg, #eef6f3, #e5f2f5);
  color: var(--ink);
}

.article-header p {
  color: #5b7076;
}

.article-header .breadcrumb,
.article-header .breadcrumb a {
  color: #61757b;
}

.article-header .eyebrow {
  color: #367d84;
}

.footer-brand img {
  height: auto;
  background: transparent;
}

@media (max-width: 1160px) {
  .hero-inner {
    grid-template-columns: minmax(0, 720px) 1fr;
  }

  .hero-media {
    width: 43%;
  }

  .inner-hero-bg {
    width: 45%;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 78px;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #f9faf6, #eef6f4);
  }

  .hero-media {
    inset: 78px 0 auto;
    width: 100%;
    height: 42vh;
    min-height: 330px;
    border-radius: 0 0 48px 48px;
    background-image: linear-gradient(180deg, rgba(13, 47, 62, 0.02), rgba(13, 47, 62, 0.48)), url("/media/vibrafe/hero-ambiente-hospitalar.webp");
    background-position: center;
  }

  .hero-grid {
    inset: 78px 0 auto;
    height: 42vh;
    min-height: 330px;
  }

  .hero-inner {
    min-height: auto;
    padding: calc(42vh + 135px) 0 128px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .hero-dossier {
    display: none;
  }

  .union-junction {
    background: linear-gradient(180deg, #fff8ea 0 50%, #e0f2f4 50% 100%);
  }

  .capability-grid,
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) figure {
    order: 0;
  }

  .inner-hero {
    min-height: 720px;
  }

  .inner-hero-bg {
    inset: 78px 0 auto;
    width: 100%;
    height: 310px;
    border-radius: 0 0 46px 46px;
  }

  .inner-hero-bg span {
    background: linear-gradient(180deg, rgba(13, 47, 62, 0.04), rgba(13, 47, 62, 0.42));
  }

  .inner-hero-content {
    align-self: end;
    padding: 405px 0 64px;
  }
}

@media (max-width: 540px) {
  .hero-inner {
    padding-top: calc(42vh + 120px);
  }

  .manifesto-band strong {
    font-size: 2rem;
  }

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

/* Direction v3 — editorial architecture, clinical glass and visible authority. */
:root {
  --scroll-progress: 0%;
  --glass-white: rgba(255, 255, 255, 0.68);
  --glass-line: rgba(255, 255, 255, 0.78);
  --glass-shadow: 0 30px 90px rgba(25, 72, 82, 0.16);
}

.site-header {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.91), rgba(246, 250, 248, 0.8));
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.site-header::after {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 0;
  width: var(--scroll-progress);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal) 52%, var(--blue));
  content: "";
  transition: width 0.08s linear;
}

.hero {
  min-height: 940px;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(70px, 9vw, 142px);
  border-right: 1px solid rgba(255, 255, 255, 0.66);
  background: linear-gradient(90deg, rgba(250, 253, 251, 0.74), rgba(250, 253, 251, 0.13));
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  content: "";
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, 0.45) 72% 72.12%, transparent 72.12%),
    linear-gradient(180deg, transparent 0 23%, rgba(255, 255, 255, 0.34) 23% 23.12%, transparent 23.12%);
  content: "";
  pointer-events: none;
}

.hero h1 {
  text-wrap: balance;
  animation: hero-rise 0.9s cubic-bezier(0.18, 0.72, 0.22, 1) both;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(92deg, #d98e25 0%, #6ba6a9 50%, #2c96c3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", Georgia, serif;
  font-size: 1.04em;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-copy,
.hero-actions,
.hero-proof {
  animation: quiet-arrival 0.76s cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.hero-copy { animation-delay: 0.12s; }
.hero-actions { animation-delay: 0.2s; }
.hero-proof { animation-delay: 0.28s; }

.hero-dossier {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(242, 250, 248, 0.66));
  box-shadow: 0 34px 100px rgba(23, 64, 74, 0.2), inset 0 1px rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(135%);
  -webkit-backdrop-filter: blur(30px) saturate(135%);
  animation: dossier-float 7s ease-in-out 1.1s infinite alternate;
}

.hero-proof strong small,
.metric-grid strong small {
  margin-left: 0.12em;
}

.hero-dossier::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.58) 48%, transparent 55%);
  content: "";
  pointer-events: none;
  transform: translateX(-130%);
  transition: transform 0.9s ease;
}

.hero-dossier:hover::after {
  transform: translateX(130%);
}

.hero-credentials {
  position: absolute;
  top: 122px;
  right: clamp(24px, 3.2vw, 62px);
  z-index: 6;
  width: min(390px, 33vw);
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 22px 22px 22px 5px;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(244, 251, 249, 0.58));
  box-shadow: var(--glass-shadow), inset 0 1px rgba(255, 255, 255, 0.96);
  color: var(--ink);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  animation: credential-arrival 0.9s cubic-bezier(0.18, 0.72, 0.22, 1) 0.18s both;
}

.hero-credentials::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal), var(--blue));
  content: "";
}

.hero-credentials-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-credentials-head span {
  color: #397b80;
  font-size: 0.61rem;
  font-weight: 840;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-credentials-head i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(114, 172, 176, 0.14);
  color: #347b80;
  font-style: normal;
}

.hero-credentials > strong {
  display: block;
  max-width: 320px;
  margin-top: 0.75rem;
  color: #263c43;
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero-credentials-logos {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0.55rem;
}

.hero-credentials-logos > div {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid rgba(66, 104, 110, 0.13);
  border-radius: 12px 12px 12px 3px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.96);
}

.hero-credentials-logos img {
  width: auto;
  max-width: 90%;
  max-height: 48px;
  object-fit: contain;
}

.hero-credentials-logos > div:first-child img {
  max-height: 56px;
}

.hero-credentials > small {
  display: block;
  margin-top: 0.7rem;
  color: #74868a;
  font-size: 0.56rem;
  line-height: 1.35;
}

.service-rail {
  justify-content: flex-start;
  background: rgba(250, 252, 249, 0.78);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.service-rail-track,
.service-rail-set {
  display: flex;
  width: max-content;
  align-items: center;
}

.service-rail-track {
  animation: service-ticker 34s linear infinite;
  will-change: transform;
}

.service-rail-set {
  min-width: max-content;
  gap: clamp(0.8rem, 2.1vw, 2rem);
  padding-right: clamp(0.8rem, 2.1vw, 2rem);
}

.service-rail:hover .service-rail-track {
  animation-play-state: paused;
}

.services-section .section-head h2 em {
  color: #3e8a91;
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", Georgia, serif;
  font-size: 1.03em;
  font-weight: 500;
}

.capability-card {
  border-color: rgba(255, 255, 255, 0.82);
  border-radius: 18px 18px 18px 4px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(246, 251, 249, 0.48));
  box-shadow: 0 20px 58px rgba(43, 89, 96, 0.07), inset 0 1px rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}

.capability-card:hover {
  border-color: rgba(114, 172, 176, 0.34);
  transform: translateY(-7px);
}

.capability-grid .capability-card:nth-child(2).is-visible,
.logo-grid .logo-card:nth-child(2).is-visible { transition-delay: 0.05s; }
.capability-grid .capability-card:nth-child(3).is-visible,
.logo-grid .logo-card:nth-child(3).is-visible { transition-delay: 0.1s; }
.capability-grid .capability-card:nth-child(4).is-visible,
.logo-grid .logo-card:nth-child(4).is-visible { transition-delay: 0.15s; }

.project-card {
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 32px 90px rgba(1, 12, 20, 0.22);
}

.project-card:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.055);
}

@keyframes hero-rise {
  from { transform: translateY(30px); }
  to { transform: translateY(0); }
}

@keyframes quiet-arrival {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes credential-arrival {
  from { transform: translate3d(22px, -14px, 0); opacity: 0; }
  to { transform: translate3d(0, 0, 0); opacity: 1; }
}

@keyframes dossier-float {
  from { transform: translateY(0); }
  to { transform: translateY(-7px); }
}

@keyframes service-ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 1160px) and (min-width: 821px) {
  .hero-credentials {
    top: 112px;
    right: 24px;
    width: 330px;
  }

  .hero-credentials > strong {
    font-size: 1.03rem;
  }

  .hero-credentials-logos > div {
    min-height: 62px;
  }
}

@media (max-width: 820px) {
  .hero-media::before {
    inset: auto 0 0;
    width: auto;
    height: 112px;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-right: 0;
    background: linear-gradient(180deg, rgba(250, 253, 251, 0.04), rgba(250, 253, 251, 0.68));
  }

  .hero-credentials {
    top: calc(78px + 42vh - 72px);
    right: 24px;
    left: 24px;
    width: auto;
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-inner {
    padding-top: calc(42vh + 235px);
  }

  .hero h1 {
    text-wrap: pretty;
  }

  .service-rail-track {
    animation-duration: 27s;
  }
}

@media (max-width: 540px) {
  .hero-credentials {
    top: calc(78px + 42vh - 62px);
    right: 16px;
    left: 16px;
    border-radius: 18px 18px 18px 4px;
    padding: 0.9rem;
  }

  .hero-credentials > strong {
    margin-top: 0.52rem;
    font-size: 0.98rem;
  }

  .hero-credentials-logos {
    margin-top: 0.68rem;
  }

  .hero-credentials-logos > div {
    min-height: 56px;
    padding: 0.45rem;
  }

  .hero-credentials-logos img {
    max-height: 36px;
  }

  .hero-credentials-logos > div:first-child img {
    max-height: 44px;
  }

  .hero-credentials > small {
    display: none;
  }

  .hero-inner {
    padding-top: calc(42vh + 205px);
  }

  .hero h1 em {
    font-size: 1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero-copy,
  .hero-actions,
  .hero-proof,
  .hero-dossier,
  .hero-credentials,
  .service-rail-track {
    animation: none !important;
  }

  .service-rail-track {
    transform: none;
  }
}
