:root {
  --blue: #002060;
  --accent-blue: #2f6fd6;
  --black: #000000;
  --white: #ffffff;
  --menu-speed: 920ms;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3,
span,
small,
a {
  overflow-wrap: anywhere;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 26px clamp(28px, 5vw, 72px);
  background: var(--white);
  transition: transform 720ms var(--ease-soft);
}

.top-actions {
  position: relative;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.brand {
  position: fixed;
  top: 18px;
  right: clamp(28px, 5vw, 72px);
  z-index: 70;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  color: inherit;
  text-decoration: none;
  transition:
    top 920ms var(--ease-soft),
    right 920ms var(--ease-soft),
    transform 920ms var(--ease-soft),
    opacity 520ms ease;
}

.brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -28px -42px -34px;
  border: 1px solid rgba(0, 32, 96, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(0, 32, 96, 0.16);
  opacity: 0;
  transform: scaleX(0.92) translateY(12px);
  transform-origin: center;
  transition:
    opacity 460ms ease,
    transform 760ms var(--ease-soft);
}

body.header-hidden:not(.menu-open) .topbar {
  transform: translateY(-120%);
}

body.header-hidden:not(.menu-open) .brand {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-180%);
}

.brand img {
  display: block;
  width: clamp(213px, 25.5vw, 400px);
  height: auto;
}

.brand-context {
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  width: min(520px, 38vw);
  max-height: 0;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  color: var(--black);
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 500;
  line-height: 1.58;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    max-height 620ms ease 280ms,
    margin-top 620ms ease 280ms,
    padding 620ms ease 280ms,
    opacity 520ms ease 360ms,
    background 520ms ease,
    border-color 520ms ease,
    box-shadow 520ms ease,
    transform 760ms var(--ease-soft) 320ms;
}

body.menu-open .brand {
  top: 50%;
  right: 25vw;
  transform: translate(50%, -50%);
}

body.menu-open .brand::before {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

body.menu-open .brand img {
  width: clamp(250px, 30vw, 470px);
}

body.menu-open .brand-context {
  width: min(590px, 42vw);
  max-height: 190px;
  margin-top: 24px;
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.8vw, 40px);
  border-color: rgba(0, 32, 96, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 80px rgba(0, 32, 96, 0.16);
  opacity: 1;
  transform: translate(-50%, 0);
  backdrop-filter: blur(12px);
}

body.menu-open.menu-closing .brand {
  top: 18px;
  right: clamp(28px, 5vw, 72px);
  transform: none;
}

body.menu-open.menu-closing .brand::before {
  opacity: 0;
  transform: scaleX(0.92) translateY(12px);
}

body.menu-open.menu-closing .brand-context {
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translate(-50%, -8px);
  transition-delay: 0ms;
}

.icon-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.menu-button {
  gap: 12px;
  min-height: 42px;
  padding: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.menu-button svg {
  width: 36px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
}

.icon-button {
  width: 42px;
  height: 42px;
}

.language-toggle {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid rgba(0, 32, 96, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  transition:
    border-color 240ms ease,
    background 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.language-toggle:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.language-toggle span[aria-hidden="true"] {
  opacity: 0.38;
}

.icon-button svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blank-page {
  min-height: clamp(170px, 24vh, 320px);
  background: var(--white);
}

.visual-break {
  display: flex;
  justify-content: center;
  padding: 0;
  background: #f7f9fc;
  border-top: 1px solid rgba(0, 32, 96, 0.12);
}

.visual-break-frame {
  position: relative;
  width: 100vw;
  height: clamp(190px, 18vw, 310px);
  margin: 0;
  overflow: hidden;
  background: var(--blue);
}

.visual-break-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 32, 96, 0.18), rgba(0, 12, 35, 0.82)),
    rgba(0, 32, 96, 0.08);
  pointer-events: none;
}

.visual-break img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(5px) saturate(0.9);
  opacity: 0.9;
  transform: none;
}

.visual-break figcaption {
  position: absolute;
  right: clamp(22px, 4vw, 72px);
  bottom: clamp(18px, 2.8vw, 44px);
  left: clamp(22px, 4vw, 72px);
  z-index: 1;
  max-width: 1120px;
  color: var(--white);
  font-size: clamp(20px, 2.35vw, 40px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.46);
}

.about-section {
  min-height: 100vh;
  padding: clamp(44px, 6vw, 92px) clamp(28px, 5vw, 72px) clamp(80px, 9vw, 140px);
  background: var(--white);
  border-top: 1px solid rgba(0, 32, 96, 0.16);
}

.about-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.section-kicker {
  position: relative;
  width: max-content;
  margin: 0 0 clamp(32px, 4vw, 54px);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  width: 38px;
  height: 8px;
  background: var(--accent-blue);
}

.about-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
}

.about-lead h1 {
  max-width: 760px;
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 4.35vw, 66px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.about-lead p {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 500;
  line-height: 1.58;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  margin-top: clamp(54px, 7vw, 94px);
  padding-top: clamp(32px, 4vw, 58px);
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.about-photo {
  margin: -6px 0 0;
}

.about-photo img {
  display: block;
  width: min(260px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(12%);
}

.about-role {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-profile-copy h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(30px, 4vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.about-profile-copy p {
  max-width: 780px;
  margin: 0;
  color: #111827;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
  line-height: 1.62;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 820px;
  margin-top: 22px;
}

.about-credentials span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(0, 32, 96, 0.2);
  border-radius: 999px;
  background: rgba(0, 32, 96, 0.04);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.linkedin-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(0, 32, 96, 0.28);
  border-radius: 999px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.linkedin-link:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.linkedin-mark {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  fill: currentColor;
  stroke: none;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.linkedin-link:hover .linkedin-mark {
  background: var(--white);
  color: var(--blue);
}

.linkedin-link-arrow {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(56px, 7vw, 104px);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.about-lines article {
  min-height: 240px;
  padding: clamp(28px, 3.5vw, 52px);
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}

.about-lines article:last-child {
  border-right: 0;
}

.about-lines span {
  display: block;
  margin-bottom: 38px;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 800;
}

.about-lines h3 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.04;
}

.about-lines p {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.services-section {
  --services-motion-x: 0px;
  --services-motion-y: 0px;
  min-height: 100vh;
  padding: clamp(68px, 8vw, 120px) clamp(28px, 5vw, 72px) clamp(84px, 9vw, 140px);
  background: #f7f9fc;
  border-top: 1px solid rgba(0, 32, 96, 0.16);
  position: relative;
  overflow: hidden;
}

.services-motion-bg {
  position: absolute;
  inset: -12% -10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.82;
  transform: translate3d(var(--services-motion-x), var(--services-motion-y), 0);
  transition: transform 0.9s ease-out;
  animation: servicesDrift 34s ease-in-out infinite alternate;
}

.services-motion-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.services-motion-bg path,
.services-motion-bg circle,
.services-motion-bg rect {
  vector-effect: non-scaling-stroke;
}

.motion-grid path {
  fill: none;
  stroke: rgba(0, 32, 96, 0.022);
  stroke-width: 1;
}

.motion-depth path {
  fill: none;
  stroke: rgba(0, 32, 96, 0.035);
  stroke-width: 42;
  stroke-linecap: round;
}

.motion-module {
  filter: drop-shadow(14px 22px 20px rgba(0, 32, 96, 0.04));
  transform-box: fill-box;
  transform-origin: center;
  animation: technicalFloat 22s ease-in-out infinite alternate;
}

.motion-module:nth-of-type(2n) {
  animation-duration: 28s;
  animation-direction: alternate-reverse;
}

.motion-module:nth-of-type(3n) {
  animation-duration: 32s;
}

.motion-module path,
.motion-module rect,
.motion-module circle {
  fill: none;
  stroke: rgba(0, 32, 96, 0.095);
  stroke-width: 2;
}

.motion-panel {
  fill: rgba(255, 255, 255, 0.36);
  stroke: rgba(0, 32, 96, 0.09);
}

.motion-axis,
.motion-soft-link,
.motion-marker {
  stroke: rgba(0, 32, 96, 0.065);
}

.motion-bar,
.motion-critical-route,
.motion-curve {
  stroke: rgba(47, 111, 214, 0.18);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: technicalTrace 10s ease-in-out infinite;
}

.motion-critical-route {
  stroke: rgba(0, 32, 96, 0.17);
  stroke-dasharray: 12 16;
  animation-duration: 14s;
}

.motion-curve {
  stroke: rgba(32, 119, 196, 0.24);
  stroke-width: 4;
  animation-delay: -2s;
}

.motion-signature,
.motion-check {
  stroke: rgba(0, 32, 96, 0.18);
  stroke-width: 5;
  stroke-linecap: round;
}

.motion-risk-cell {
  fill: rgba(47, 111, 214, 0.045);
  stroke: rgba(47, 111, 214, 0.11);
}

.motion-orbit {
  fill: rgba(255, 255, 255, 0.24);
  stroke: rgba(0, 32, 96, 0.08);
}

.services-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.services-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
}

.services-lead h2 {
  max-width: 860px;
  margin: 0;
  color: var(--black);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.services-lead p {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: clamp(16px, 1.16vw, 19px);
  font-weight: 500;
  line-height: 1.58;
}

.services-focus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(46px, 6vw, 82px);
  background: rgba(0, 32, 96, 0.16);
  border: 1px solid rgba(0, 32, 96, 0.16);
}

.services-focus article {
  min-height: 160px;
  padding: clamp(22px, 2.4vw, 34px);
  background: #fff;
  transition: transform 0.45s ease, background 0.45s ease, color 0.45s ease;
}

.services-focus article:hover {
  transform: translateY(-8px);
  background: var(--blue);
  color: #fff;
}

.services-focus span,
.service-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.services-focus article:hover span {
  color: #8fc6ff;
}

.services-focus strong {
  display: block;
  max-width: 330px;
  color: inherit;
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 800;
  line-height: 1.04;
}

.services-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(28px, 4vw, 52px);
  background: rgba(0, 32, 96, 0.14);
  border: 1px solid rgba(0, 32, 96, 0.14);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(135deg, rgba(0, 88, 170, 0.05), rgba(255, 255, 255, 0) 34%),
    #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 6px;
  background: var(--accent-blue);
  transition: width 0.5s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 32, 96, 0.18);
}

.service-card:hover::before {
  width: 100%;
}

.service-card-featured {
  grid-column: span 3;
  min-height: 0;
  display: grid;
  grid-template-columns: 76px 96px minmax(260px, 0.72fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 2.5vw, 40px);
  align-items: start;
  background:
    linear-gradient(120deg, rgba(0, 32, 96, 0.96), rgba(0, 32, 96, 0.9)),
    #002060;
  color: #fff;
}

.service-card-featured::before {
  background: #7db7ff;
}

.service-card-featured span {
  grid-column: 2;
  grid-row: 1;
  margin-top: 8px;
  color: #9fcbff;
}

.service-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 32, 96, 0.18);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.52) 58%),
    linear-gradient(145deg, rgba(47, 111, 214, 0.14), rgba(0, 32, 96, 0.04));
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.52),
    0 14px 34px rgba(0, 32, 96, 0.1);
}

.service-card-featured .service-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  border-color: rgba(255, 255, 255, 0.38);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06) 62%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.service-icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-featured .service-icon svg {
  stroke: #fff;
}

.service-card h3 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.04;
}

.service-card-featured h3 {
  grid-column: 3;
  grid-row: 1;
  color: #fff;
  font-size: clamp(30px, 3vw, 52px);
}

.service-card p {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.58;
}

.service-card-featured p {
  grid-column: 3;
  grid-row: 2;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.2vw, 19px);
}

.service-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card-featured ul {
  grid-column: 4;
  grid-row: 1 / span 2;
  margin-top: 4px;
}

.service-card li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 2px;
  background: #7db7ff;
}

.services-visual-delivery {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 72px);
  align-items: start;
  margin-top: clamp(42px, 5vw, 76px);
  padding: clamp(30px, 4vw, 56px);
  background: var(--blue);
  color: var(--white);
}

.services-visual-delivery strong {
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 800;
  line-height: 1.04;
}

.services-visual-delivery p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 1.58;
}

@keyframes servicesDrift {
  0% {
    transform: translate3d(calc(var(--services-motion-x) - 8px), calc(var(--services-motion-y) + 6px), 0) scale(1);
  }

  100% {
    transform: translate3d(calc(var(--services-motion-x) + 14px), calc(var(--services-motion-y) - 10px), 0) scale(1.018);
  }
}

@keyframes technicalFloat {
  0% {
    transform: translate3d(-8px, 10px, 0) rotate(-0.4deg);
  }
  100% {
    transform: translate3d(12px, -12px, 0) rotate(0.5deg);
  }
}

@keyframes technicalTrace {
  0%,
  24% {
    stroke-dashoffset: 160;
    opacity: 0.22;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 0.72;
  }
  100% {
    stroke-dashoffset: -160;
    opacity: 0.22;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-motion-bg,
  .motion-module,
  .motion-bar,
  .motion-critical-route,
  .motion-curve {
    animation: none;
    transition: none;
  }
}

.method-section {
  min-height: 100vh;
  padding: clamp(68px, 8vw, 120px) clamp(28px, 5vw, 72px) clamp(84px, 9vw, 140px);
  background: var(--white);
  border-top: 1px solid rgba(0, 32, 96, 0.16);
}

.method-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.method-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
}

.method-lead h2 {
  max-width: 800px;
  margin: 0;
  color: var(--black);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.method-lead p {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: clamp(16px, 1.16vw, 19px);
  font-weight: 500;
  line-height: 1.58;
}

.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(58px, 7vw, 102px);
  overflow: visible;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.method-flow::before {
  content: "";
  position: absolute;
  top: 56px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 214, 0.7), transparent);
}

.method-flow article {
  position: relative;
  min-height: 360px;
  min-width: 0;
  padding: clamp(22px, 2.2vw, 34px);
  border-right: 1px solid rgba(0, 0, 0, 0.14);
  background: var(--white);
}

.method-flow article:last-child {
  border-right: 0;
}

.method-flow span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(34px, 3.6vw, 58px);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.method-flow h3 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(18px, 1.22vw, 22px);
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: normal;
}

.method-flow p {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.method-principle {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 72px);
  align-items: start;
  margin-top: clamp(42px, 5vw, 76px);
  padding: clamp(28px, 4vw, 54px) 0 0;
  border-top: 1px solid rgba(0, 32, 96, 0.18);
}

.method-principle strong {
  color: var(--blue);
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 800;
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.method-principle p {
  margin: 0;
  color: #111827;
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 1.58;
}

.clients-section {
  min-height: 100vh;
  padding: clamp(68px, 8vw, 120px) clamp(28px, 5vw, 72px) clamp(84px, 9vw, 140px);
  background: #f7f9fc;
  border-top: 1px solid rgba(0, 32, 96, 0.16);
}

.clients-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.clients-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: end;
}

.clients-lead h2 {
  max-width: 850px;
  margin: 0;
  color: var(--black);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.clients-lead p {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: clamp(16px, 1.16vw, 19px);
  font-weight: 500;
  line-height: 1.58;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  margin-top: clamp(54px, 7vw, 96px);
  overflow: hidden;
  border-top: 1px solid rgba(0, 32, 96, 0.14);
  border-left: 1px solid rgba(0, 32, 96, 0.14);
  background: var(--white);
}

.client-logo-grid figure {
  display: grid;
  min-height: 152px;
  place-items: center;
  margin: 0;
  padding: 18px;
  border-right: 1px solid rgba(0, 32, 96, 0.14);
  border-bottom: 1px solid rgba(0, 32, 96, 0.14);
  background: var(--white);
  overflow: hidden;
}

.client-logo-grid img {
  display: block;
  width: 100%;
  max-height: 104px;
  object-fit: contain;
  filter: grayscale(8%);
  transform-origin: center;
}

.client-otl img {
  transform: translateY(-1px) scale(1.58);
}

.client-a1 img {
  transform: scale(1.36);
}

.client-standard img {
  transform: scale(1.2);
}

.client-usm img {
  transform: scale(1.08);
}

.client-wide img {
  transform: scale(1.28);
}

.client-tecnova img {
  transform: scale(1.16);
}

.client-aldo img {
  transform: scale(0.92);
}

.client-aphar img {
  transform: translateY(2px) scale(0.94);
}

.client-eletric img,
.client-agis img {
  transform: scale(1.08);
}

.client-global img {
  transform: translateY(20px) scale(1.72);
}

.client-vitoria img {
  transform: scale(2.35);
}

.client-tuv img {
  transform: scale(1.86);
}

.end-clients-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  margin-top: clamp(56px, 7vw, 98px);
  padding-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.end-clients-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.end-clients-copy p {
  margin: 0;
  color: #1f2937;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 500;
  line-height: 1.58;
}

.end-client-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 22px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--blue) rgba(0, 32, 96, 0.12);
  scrollbar-width: thin;
}

.end-client-rail::-webkit-scrollbar {
  height: 9px;
}

.end-client-rail::-webkit-scrollbar-track {
  background: rgba(0, 32, 96, 0.1);
}

.end-client-rail::-webkit-scrollbar-thumb {
  background: var(--blue);
}

.end-client-rail figure {
  display: grid;
  flex: 0 0 clamp(150px, 17vw, 190px);
  min-height: 82px;
  place-items: center;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(0, 32, 96, 0.14);
  background: var(--white);
  scroll-snap-align: start;
}

.end-client-rail img {
  display: block;
  width: auto;
  max-width: 122px;
  max-height: 40px;
  object-fit: contain;
}

.end-client-petrobras img {
  max-width: 132px;
}

.end-client-vale img,
.end-client-cemig img {
  max-width: 112px;
}

.end-client-irani img {
  max-width: 118px;
  max-height: 44px;
}

.end-client-samarco img {
  max-width: 112px;
}

.end-client-suzano img {
  max-width: 136px;
  max-height: 46px;
}

.end-client-arcelor img {
  max-width: 126px;
  max-height: 44px;
}

.end-client-amazon img {
  max-width: 122px;
}

.end-client-compesa img {
  max-width: 128px;
}

.end-client-apm img {
  max-width: 134px;
  max-height: 44px;
}

.end-client-fiat img {
  max-width: 86px;
  max-height: 50px;
}

.end-client-adient img {
  max-width: 138px;
  max-height: 46px;
}

.end-client-arauco img {
  max-width: 128px;
  max-height: 42px;
}

.end-client-suncoke img {
  max-width: 136px;
  max-height: 40px;
}

.end-client-dow img {
  max-width: 112px;
  max-height: 42px;
}

.end-client-cpfl img {
  max-width: 154px;
  max-height: 60px;
  transform: scale(1.2);
}

.tools-topic-section {
  min-height: 72vh;
  padding: clamp(68px, 8vw, 120px) clamp(28px, 5vw, 72px) clamp(84px, 9vw, 140px);
  background: var(--white);
  border-top: 1px solid rgba(0, 32, 96, 0.16);
}

.tools-topic-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.tools-topic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.46fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.tools-topic-layout h2 {
  max-width: 780px;
  margin: 0;
  color: var(--black);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.tools-topic-layout p {
  max-width: 720px;
  margin: 28px 0 0;
  color: #1f2937;
  font-size: clamp(16px, 1.16vw, 19px);
  font-weight: 500;
  line-height: 1.58;
}

.tools-topic-card {
  position: relative;
  display: grid;
  min-height: 250px;
  align-content: end;
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(0, 32, 96, 0.16);
  background:
    linear-gradient(135deg, rgba(0, 32, 96, 0.96), rgba(0, 32, 96, 0.84)),
    var(--blue);
  color: var(--white);
}

.tools-topic-card::before {
  content: "";
  position: absolute;
  top: -56px;
  right: -42px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.tools-topic-card::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 120px;
  height: 8px;
  background: rgba(143, 182, 255, 0.42);
  box-shadow:
    0 -32px 0 rgba(143, 182, 255, 0.24),
    0 -64px 0 rgba(143, 182, 255, 0.16);
}

.tools-topic-card span {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-bottom: 18px;
  color: #8fb6ff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tools-topic-card strong {
  position: relative;
  z-index: 1;
  max-width: 260px;
  font-size: clamp(25px, 2.5vw, 40px);
  font-weight: 800;
  line-height: 1.04;
}

.contact-section {
  min-height: 100vh;
  padding: clamp(68px, 8vw, 120px) clamp(28px, 5vw, 72px) clamp(84px, 9vw, 140px);
  background: var(--white);
  border-top: 1px solid rgba(0, 32, 96, 0.16);
}

.contact-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.64fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: end;
}

.contact-lead h2 {
  max-width: 840px;
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-lead p {
  max-width: 720px;
  margin: 28px 0 0;
  color: #1f2937;
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 500;
  line-height: 1.6;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 122px;
  padding: 24px;
  border: 1px solid rgba(0, 32, 96, 0.16);
  background: #f7f9fc;
  color: var(--black);
  text-decoration: none;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.contact-card:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-card-primary {
  background: var(--blue);
  color: var(--white);
}

.contact-card-primary:hover {
  background: var(--black);
}

.contact-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.04;
}

.contact-card small {
  margin-top: 8px;
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.76;
}

.contact-context {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.contact-context article {
  min-height: 180px;
  padding: clamp(24px, 3.2vw, 46px);
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}

.contact-context article:last-child {
  border-right: 0;
}

.contact-context span {
  display: block;
  margin-bottom: 36px;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 800;
}

.contact-context p {
  margin: 0;
  color: #111827;
  font-size: clamp(17px, 1.32vw, 23px);
  font-weight: 700;
  line-height: 1.24;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(54px, 5.5vw, 88px) clamp(28px, 5vw, 72px);
}

.footer-inner {
  display: flex;
  width: min(1280px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.footer-brand {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-contact a,
.footer-location {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-contact a:hover {
  color: #8fb6ff;
  transform: translateY(-1px);
}

.footer-location {
  opacity: 0.82;
}

.footer-linkedin-mark {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.footer-contact svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  pointer-events: none;
  visibility: hidden;
}

.search-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  transition: opacity 420ms ease;
}

.search-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.search-overlay.is-open::before {
  opacity: 1;
}

.search-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  padding: clamp(26px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(0, 32, 96, 0.16);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 32, 96, 0.16);
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 640ms var(--ease-soft);
}

.search-overlay.is-open .search-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 32, 96, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
}

.search-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.6;
  stroke-linecap: round;
}

.search-kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-field {
  display: grid;
  gap: 12px;
}

.search-field span {
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
}

.search-field input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--blue);
  border-radius: 0;
  padding: 0 54px 18px 0;
  outline: none;
  color: var(--black);
  font: inherit;
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
}

.search-field input::placeholder {
  color: rgba(0, 0, 0, 0.24);
}

.search-results {
  display: grid;
  max-height: 430px;
  gap: 10px;
  margin-top: 28px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-color: var(--blue) rgba(0, 32, 96, 0.12);
  scrollbar-width: thin;
}

.search-result {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  text-align: left;
}

.search-result strong {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-result span {
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.12;
}

.search-result small {
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.search-result:hover span {
  color: var(--blue);
}

.search-empty {
  margin: 0;
  padding: 22px 0 0;
  color: #4b5563;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.search-hit {
  outline: 3px solid rgba(47, 111, 214, 0.34);
  outline-offset: 8px;
  transition: outline-color 520ms ease;
}

.search-open {
  overflow: hidden;
}

.menu-overlay {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  display: block;
  width: 50vw;
  pointer-events: none;
  visibility: hidden;
}

.menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--menu-speed) cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-overlay.is-open,
.menu-overlay.is-closing {
  pointer-events: auto;
  visibility: visible;
}

.menu-overlay.is-open::before {
  transform: scaleX(1);
}

.menu-overlay.is-closing::before {
  transform: scaleX(0);
  transition-duration: 820ms;
}

.menu-panel {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 520ms ease 340ms,
    transform 860ms var(--ease-soft) 340ms;
}

.menu-overlay.is-open .menu-panel {
  opacity: 1;
  transform: translateX(0);
}

.menu-overlay.is-closing .menu-panel {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 360ms ease,
    transform 620ms var(--ease-soft);
}

.menu-panel-info {
  display: none;
}

.menu-panel-info img {
  display: block;
  width: min(520px, 100%);
  height: auto;
  background: var(--white);
}

.menu-panel-info p {
  width: min(520px, 100%);
  margin: 28px 0 0;
  color: var(--white);
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 600;
  line-height: 1.58;
}

.menu-panel-nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(18px, 2.8vh, 30px);
  width: 100%;
  min-width: 0;
  padding: clamp(52px, 6vw, 110px) clamp(38px, 5vw, 90px);
  background: transparent;
}

.menu-panel-nav a {
  position: relative;
  width: max-content;
  color: var(--white);
  font-size: clamp(30px, 3vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transform-origin: right center;
  transition:
    color 280ms ease,
    filter 280ms ease,
    letter-spacing 280ms ease,
    opacity 280ms ease,
    transform 360ms var(--ease-soft);
}

.menu-panel-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -11px;
  width: 28px;
  height: 8px;
  background: var(--accent-blue);
  transform-origin: right center;
  transition:
    background 280ms ease,
    height 280ms ease,
    width 360ms var(--ease-soft),
    transform 360ms var(--ease-soft);
}

.menu-panel-nav a:hover,
.menu-panel-nav a:focus-visible {
  color: #ffffff;
  filter: drop-shadow(0 14px 28px rgba(47, 111, 214, 0.32));
  letter-spacing: 0.01em;
  outline: none;
  transform: translateX(-10px) scale(1.105);
}

.menu-panel-nav:has(a:hover) a:not(:hover),
.menu-panel-nav:has(a:focus-visible) a:not(:focus-visible) {
  opacity: 0.74;
  transform: scale(0.965);
}

.menu-panel-nav a:hover::after,
.menu-panel-nav a:focus-visible::after {
  width: 56px;
  height: 10px;
  background: #66a5ff;
  transform: translateX(-2px);
}

.menu-close {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 56px);
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(1px 1px 0 var(--blue));
  transform: rotate(0.001deg);
}

body.menu-open {
  overflow: hidden;
}

body.suite-loading {
  overflow: hidden;
}

.suite-launch-overlay {
  --suite-load-time: 1800ms;
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  visibility: hidden;
}

.suite-launch-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.28);
  opacity: 0;
  backdrop-filter: blur(0);
  transition:
    opacity 360ms ease,
    backdrop-filter 520ms ease;
}

.suite-launch-overlay.is-active {
  pointer-events: auto;
  visibility: visible;
}

.suite-launch-overlay.is-active::before {
  opacity: 1;
  backdrop-filter: blur(8px);
}

.suite-launch-card {
  --suite-load-ease: cubic-bezier(0.65, 0, 0.25, 1);
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(0, 32, 96, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94)),
    var(--white);
  box-shadow: 0 38px 110px rgba(0, 32, 96, 0.24);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 460ms ease,
    transform 620ms var(--ease-soft);
}

.suite-launch-overlay.is-active .suite-launch-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.suite-launch-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.suite-launch-card strong {
  display: block;
  color: var(--black);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.04;
}

.suite-launch-card p {
  max-width: 430px;
  margin: 16px 0 28px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.suite-progress-row {
  display: block;
}

.suite-progress {
  position: relative;
  height: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 32, 96, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
    rgba(0, 32, 96, 0.08);
  box-shadow: inset 0 1px 4px rgba(0, 32, 96, 0.08);
}

.suite-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue), var(--accent-blue));
}

.suite-launch-card .suite-progress-value {
  position: absolute;
  inset: 0 10px 0 auto;
  z-index: 1;
  display: inline-flex;
  min-width: 48px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.suite-loader-variant-1 .suite-launch-card {
  --suite-load-ease: cubic-bezier(0.55, 0.03, 0.2, 1);
}

.suite-loader-variant-2 .suite-launch-card {
  --suite-load-ease: cubic-bezier(0.72, 0, 0.28, 1);
}

.suite-loader-variant-3 .suite-launch-card {
  --suite-load-ease: cubic-bezier(0.35, 0.02, 0.18, 1);
}

.suite-loader-variant-4 .suite-launch-card {
  --suite-load-ease: cubic-bezier(0.85, 0, 0.18, 1);
}

.suite-loader-variant-5 .suite-launch-card {
  --suite-load-ease: cubic-bezier(0.5, 0.08, 0.12, 1);
}

@keyframes suiteProgress {
  0% {
    transform: scaleX(0);
  }
  38% {
    transform: scaleX(0.46);
  }
  66% {
    transform: scaleX(0.74);
  }
  82% {
    transform: scaleX(0.82);
  }
  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 78px;
    padding: 16px;
  }

  .top-actions {
    gap: 8px;
  }

  .brand img {
    width: clamp(116px, 34vw, 156px);
  }

  .language-toggle {
    min-width: 42px;
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }

  .language-toggle span[aria-hidden="true"],
  .language-toggle [data-language-target] {
    display: none;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .icon-button svg {
    width: 27px;
    height: 27px;
  }

  .menu-button {
    min-height: 38px;
  }

  .menu-button svg {
    width: 34px;
    height: 24px;
  }

  .brand {
    top: 14px;
    right: 14px;
  }

  .brand::before {
    inset: -20px -26px -28px;
  }

  .visual-break-frame {
    height: clamp(150px, 34vw, 220px);
  }

  .visual-break figcaption {
    font-size: clamp(17px, 5.4vw, 28px);
    line-height: 1.08;
  }

  .brand-context {
    width: min(82vw, 360px);
    font-size: 14px;
  }

  body.menu-open .brand-context {
    width: min(86vw, 380px);
    max-height: 230px;
    margin-top: 18px;
    padding: 16px 18px;
  }

  .search-overlay {
    align-items: start;
    padding: 16px;
    overflow-y: auto;
  }

  .search-panel {
    width: 100%;
    max-height: calc(100dvh - 32px);
    padding: 28px 18px 22px;
    overflow: auto;
  }

  .search-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .search-kicker {
    margin-bottom: 18px;
  }

  .search-field input {
    padding-right: 46px;
    padding-bottom: 14px;
    font-size: clamp(24px, 8vw, 36px);
  }

  .search-results {
    max-height: calc(100dvh - 250px);
    margin-top: 22px;
  }

  body.menu-open .brand {
    top: 72%;
    right: 50%;
    transform: translate(50%, -50%);
  }

  body.menu-open .brand img {
    width: min(48vw, 240px);
  }

  .menu-button span {
    display: none;
  }

  .about-section,
  .services-section,
  .method-section {
    padding: 72px 24px 76px;
  }

  .about-lead,
  .about-profile,
  .about-lines,
  .services-lead,
  .services-focus,
  .services-catalog,
  .service-card-featured,
  .services-visual-delivery,
  .method-lead,
  .method-flow,
  .method-principle,
  .clients-lead,
  .end-clients-block,
  .tools-topic-layout,
  .contact-layout,
  .contact-context {
    grid-template-columns: 1fr;
  }

  .about-lead h1,
  .services-lead h2,
  .method-lead h2,
  .clients-lead h2,
  .contact-lead h2 {
    font-size: clamp(31px, 9vw, 48px);
  }

  .services-focus,
  .services-catalog {
    gap: 1px;
  }

  .service-card-featured {
    grid-column: span 1;
    gap: 20px;
  }

  .service-card-featured .service-icon,
  .service-card-featured span,
  .service-card-featured h3,
  .service-card-featured p,
  .service-card-featured ul {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card {
    min-height: 0;
  }

  .service-card:hover,
  .services-focus article:hover {
    transform: none;
  }

  .method-flow::before {
    display: none;
  }

  .method-flow {
    overflow: visible;
  }

  .method-flow article {
    min-height: 0;
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  }

  .method-flow article:last-child {
    border-bottom: 0;
  }

  .method-flow span {
    margin-bottom: 28px;
  }

  .contact-section {
    padding: 72px 24px 76px;
  }

  .contact-card {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 104px;
    padding: 18px;
  }

  .contact-card small,
  .footer-contact span {
    word-break: break-word;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }

  .contact-context article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  }

  .contact-context article:last-child {
    border-bottom: 0;
  }

  .clients-section {
    padding: 72px 24px 76px;
  }

  .tools-topic-section {
    min-height: 0;
    padding: 72px 24px 76px;
  }

  .tools-topic-card {
    min-height: 210px;
  }

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

  .client-logo-grid figure {
    min-height: 116px;
    padding: 18px;
  }

  .end-client-rail figure {
    flex-basis: 180px;
    height: 100px;
  }

  .about-lines article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  }

  .about-lines article:last-child {
    border-bottom: 0;
  }

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

  .site-footer {
    padding: 48px 24px 58px;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .menu-overlay {
    display: block;
    width: 100vw;
  }

  .menu-panel-info {
    align-items: flex-start;
    justify-content: flex-end;
    width: auto;
    padding: 0 28px 34px;
  }

  .menu-panel-info img {
    width: min(330px, 90%);
  }

  .menu-panel-nav {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    padding: 86px 28px 260px;
  }
}
