@font-face {
  font-family: "Montserrat";
  src: local("Montserrat");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy: #072a5c;
  --navy-deep: #051f46;
  --blue: #0f3c78;
  --blue-soft: #dce7f3;
  --accent: #ab2421;
  --accent-deep: #8e2425;
  --accent-soft: #f3e6e6;
  --accent-hover: #981f1d;
  --graphite: #1e232b;
  --gray-soft: #f4f7fb;
  --surface-alt: #eaf0f7;
  --gray-line: rgba(7, 42, 92, 0.1);
  --surface: rgba(255, 255, 255, 0.88);
  --white: #ffffff;
  --text: #072a5c;
  --muted: #5d6c82;
  --shadow-soft: 0 20px 60px rgba(5, 31, 70, 0.08);
  --shadow-card: 0 28px 80px rgba(5, 31, 70, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1320px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(142, 36, 37, 0.05), transparent 24%),
    linear-gradient(180deg, #f8fafd 0%, var(--gray-soft) 48%, #eef3f8 100%);
}

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

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

[hidden] {
  display: none !important;
}

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100vw - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(247, 249, 252, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(7, 42, 92, 0.82);
}

.site-nav a {
  position: relative;
  padding-bottom: 5px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transition: width 220ms ease, opacity 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.contact-link,
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(7, 42, 92, 0.08);
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.contact-link img,
.lang-switch img {
  width: 15px;
  height: 15px;
}

.lang-switch {
  cursor: pointer;
  position: relative;
  padding-right: 32px;
}

.lang-switch::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 180ms ease;
}

.language-menu {
  position: relative;
}

.language-menu.is-open .lang-switch::after {
  transform: translateY(-35%) rotate(-135deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 238px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 42, 92, 0.08);
  box-shadow: 0 24px 56px rgba(5, 31, 70, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(16px);
}

.language-menu.is-open .language-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  background: rgba(7, 42, 92, 0.05);
}

.language-option.is-active {
  background: rgba(15, 60, 120, 0.08);
}

.language-code {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-name {
  font-size: 14px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

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

.button-primary {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--navy);
  color: var(--white);
  box-shadow:
    0 18px 40px rgba(7, 42, 92, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue);
  box-shadow:
    0 22px 44px rgba(7, 42, 92, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary:active {
  transform: translateY(-1px);
  background: var(--navy-deep);
  box-shadow:
    0 12px 28px rgba(7, 42, 92, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(7, 42, 92, 0.14);
  color: var(--navy);
  box-shadow:
    0 10px 24px rgba(5, 31, 70, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(15, 60, 120, 0.24);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 14px 28px rgba(5, 31, 70, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button-compact {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
}

.back-to-top {
  position: fixed;
  right: calc(env(safe-area-inset-right, 0px) + var(--back-to-top-offset-right, 24px));
  bottom: calc(env(safe-area-inset-bottom, 0px) + var(--back-to-top-offset-bottom, 24px));
  z-index: 26;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  box-shadow:
    0 18px 40px rgba(7, 42, 92, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease;
}

.back-to-top.is-active {
  opacity: calc(0.14 + (var(--back-to-top-progress, 0) * 0.86));
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--blue);
  box-shadow:
    0 22px 44px rgba(7, 42, 92, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: translateY(-1px);
  background: var(--navy-deep);
  box-shadow:
    0 12px 28px rgba(7, 42, 92, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.back-to-top:focus-visible {
  outline: none;
  opacity: 1;
  box-shadow:
    0 0 0 4px rgba(171, 36, 33, 0.16),
    0 22px 44px rgba(7, 42, 92, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.back-to-top img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    overflow: clip;
    padding: 52px 0 calc(var(--space-7) - 28px);
}

.hero-stage {
  position: relative;
  width: min(var(--container), calc(100vw - 48px));
  margin: 0 auto;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(15, 60, 120, 0.12), transparent 26%),
    radial-gradient(circle at 86% 24%, rgba(142, 36, 37, 0.07), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.44) 100%);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1980 / 901;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.hero-overlay-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 0 0 min(100%, 520px);
  width: min(100%, 520px);
}

.hero-copy-stage {
  position: relative;
  min-height: 402px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-slide.is-active {
    visibility: visible;
    z-index: 1;
    pointer-events: auto;
}

.hero-slide.is-leaving {
    visibility: visible;
    z-index: 2;
    pointer-events: none;
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: contain;
  object-position: center center;
  transition: opacity 900ms ease;
}

.hero-slide.is-active .hero-slide-image {
  opacity: 1;
}

.hero-slide.is-leaving .hero-slide-image {
  opacity: 0;
}

.hero-slider-ornament {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.96;
}

.hero-slider-ornament-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.hero-slider-ornament.is-animating {
    animation:
        heroOrnamentRevealClip 2100ms cubic-bezier(0.16, 0.84, 0.24, 1) forwards,
        heroOrnamentRevealOpacity 2100ms ease-out forwards;
}

.hero-slider-ornament.is-hiding {
    animation:
        heroOrnamentRevealClip 2100ms cubic-bezier(0.16, 0.84, 0.24, 1) reverse forwards,
        heroOrnamentRevealOpacity 2100ms ease-out reverse forwards;
}

.hero-slide-copy {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  width: min(100%, 520px);
  pointer-events: none;
  transform: none;
  transition: opacity 220ms ease;
}

.hero-slide-copy.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

.hero-slide-copy .hero-slide-title-word {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
}

.hero-slide-copy .hero-lead {
  opacity: 0;
  filter: blur(6px);
}

.hero-slide-copy .hero-slide-title {
  transform: scale(0.96);
}

.hero-slide-copy.is-active .hero-slide-title-word {
  animation: heroCopyWordReveal 800ms forwards cubic-bezier(0.11, 0, 0.5, 0);
  animation-delay: calc(var(--word-index, 0) * 90ms + 120ms);
}

.hero-slide-copy.is-active .hero-slide-title {
  animation: heroCopyTitleScale 1800ms forwards cubic-bezier(0.5, 1, 0.89, 1);
}

.hero-slide-copy.is-active .hero-lead {
  animation: heroCopyLeadReveal 720ms cubic-bezier(0.11, 0, 0.5, 0) 420ms forwards;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide-title,
.section-head h2,
.cta-copy h2 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.05em;
}

.hero-slide-title {
  max-width: 700px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.inner-page-intro {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: 32px 0 12px;
}

.hero-inner {
  min-height: clamp(380px, 52vh, 560px);
  display: flex;
  align-items: center;
}

.hero-lead {
  max-width: 470px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.hero-static-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  pointer-events: auto;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.hero-link-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(142, 36, 37, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(5, 31, 70, 0.06);
}

.hero-link-icon::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 13px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--accent);
}

.hero-slider-controls {
  position: absolute;
  right: clamp(18px, 1.9vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 5;
  pointer-events: auto;
}

.hero-slider-progress-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 12px;
  --hero-liquid-y: 0px;
  --hero-liquid-h: 178px;
  --hero-slide-display-duration: 10000ms;
  --hero-liquid-origin: top center;
  --hero-liquid-radius: 999px;
}

.hero-slider-segment {
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 12px;
  height: 92px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition:
    height 500ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 500ms ease,
    transform 280ms ease;
  transition-delay: 0s, 320ms, 0s;
}

.hero-slider-segment:hover {
  transform: scaleX(1.06);
}

.hero-slider-segment.is-active {
  height: 178px;
  transition-delay: 0s;
}

.hero-slider-liquid {
  position: absolute;
  left: 0;
  top: var(--hero-liquid-y);
  width: 100%;
  height: var(--hero-liquid-h);
  border-radius: var(--hero-liquid-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(229, 239, 249, 0.1) 34%, rgba(164, 207, 250, 0.08) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 10px 20px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(14, 38, 72, 0.12),
    0 0 16px rgba(164, 210, 255, 0.08);
  backdrop-filter: blur(16px) saturate(122%);
  -webkit-backdrop-filter: blur(16px) saturate(122%);
  transition:
    top 620ms cubic-bezier(0.34, 1.56, 0.3, 1),
    height 620ms cubic-bezier(0.34, 1.56, 0.3, 1),
    transform 620ms cubic-bezier(0.34, 1.56, 0.3, 1),
    box-shadow 320ms ease;
  transform: translateZ(0);
  pointer-events: none;
}

.hero-slider-liquid-fill {
  position: absolute;
  inset: 0;
  border-radius: var(--hero-liquid-radius);
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: var(--hero-liquid-origin);
  opacity: 0;
}

.hero-slider-liquid-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--hero-liquid-radius);
  background:
    linear-gradient(180deg, rgba(226, 237, 248, 0.42) 0%, rgba(240, 246, 252, 0.88) 42%, rgba(252, 254, 255, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 -14px 24px rgba(255, 255, 255, 0.28),
    inset 0 18px 30px rgba(178, 210, 239, 0.16),
    0 0 18px rgba(173, 214, 255, 0.16);
}

.hero-slider-progress-stack[data-liquid-direction="down"] .hero-slider-liquid-fill::before {
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.98) 0%, rgba(240, 246, 252, 0.88) 42%, rgba(226, 237, 248, 0.42) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 14px 24px rgba(255, 255, 255, 0.28),
    inset 0 -18px 30px rgba(178, 210, 239, 0.16),
    0 0 18px rgba(173, 214, 255, 0.16);
}

.hero-slider-liquid-fill::after {
  content: "";
  position: absolute;
  inset: auto 2px 8px;
  height: 30%;
  border-radius: var(--hero-liquid-radius);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.16) 72%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.9;
}

.hero-slider-progress-stack[data-liquid-direction="down"] .hero-slider-liquid-fill::after {
  inset: 8px 2px auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.16) 72%, rgba(255, 255, 255, 0) 100%);
}

.hero-slider-liquid.is-filling .hero-slider-liquid-fill {
  animation: heroLiquidFill var(--hero-slide-display-duration, 10000ms) linear forwards;
}

.hero-slider-liquid.is-complete .hero-slider-liquid-fill {
  transform: scaleY(1);
}

.hero-slider-liquid::before {
  content: "";
  position: absolute;
  inset: 8px 2px auto;
  height: 26%;
  border-radius: var(--hero-liquid-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0.46;
}

.hero-slider-liquid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--hero-liquid-radius);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 48%, rgba(140, 194, 255, 0.06) 100%);
  mix-blend-mode: screen;
  opacity: 0.44;
}

.hero-slider-segment-track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--hero-liquid-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(219, 233, 248, 0.06) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 10px 18px rgba(255, 255, 255, 0.04),
    0 4px 14px rgba(11, 31, 64, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0.72;
  transition:
    opacity 500ms ease,
    background 500ms ease,
    box-shadow 500ms ease;
  transition-delay: 320ms, 320ms, 320ms;
}

.hero-slider-segment-fill {
  position: absolute;
  inset: 0;
  border-radius: var(--hero-liquid-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(217, 232, 248, 0.04) 44%, rgba(122, 186, 255, 0.02) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0.5;
  transition:
    background 500ms ease,
    box-shadow 500ms ease,
    opacity 500ms ease;
}

.hero-slider-segment-fill::after {
  content: "";
  position: absolute;
  inset: 9px 2px;
  border-radius: var(--hero-liquid-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0.18;
}

.hero-slider-segment.is-active .hero-slider-segment-fill {
  opacity: 0.14;
}

.hero-slider-segment.is-active .hero-slider-segment-track {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(227, 238, 248, 0.08) 100%);
  opacity: 0.88;
  transition-delay: 0s, 0s, 0s;
}

.hero-slider-segment:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 4px;
}

.hero-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.78;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.hero-slider-arrow:hover {
  opacity: 1;
  transform: scale(1.06);
  filter: drop-shadow(0 6px 16px rgba(255, 255, 255, 0.12));
}

.hero-slider-arrow-chevron {
  width: 18px;
  height: 18px;
  border-top: 3px solid rgba(225, 238, 250, 0.8);
  border-right: 3px solid rgba(225, 238, 250, 0.8);
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.12))
    drop-shadow(0 3px 12px rgba(9, 27, 54, 0.18));
}

.hero-slider-arrow-up .hero-slider-arrow-chevron {
  transform: rotate(-45deg) translate(1px, 1px);
}

.hero-slider-arrow-down .hero-slider-arrow-chevron {
  transform: rotate(135deg) translate(1px, -1px);
}

@keyframes heroLiquidFill {
  0% {
    transform: scaleY(0);
    opacity: 0;
    filter: saturate(0.84) blur(0.2px);
  }

  18% {
    opacity: 0.54;
    filter: saturate(0.9) blur(0.15px);
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
    filter: saturate(1) blur(0);
  }
}

.trust-strip-section {
  position: relative;
  z-index: 3;
  margin-top: -24px;
  padding: 0 0 16px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 42, 92, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 24px 28px;
}

.trust-strip-item + .trust-strip-item {
  border-left: 1px solid rgba(7, 42, 92, 0.08);
}

.trust-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(15, 60, 120, 0.07);
}

.trust-strip-icon img {
  width: 22px;
  height: 22px;
  opacity: 0.92;
}

.trust-strip-copy {
  display: grid;
  gap: 6px;
}

.trust-strip-copy strong {
  color: var(--navy);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.trust-strip-copy span {
  color: rgba(7, 42, 92, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

@keyframes heroCopyWordReveal {
  0% {
    opacity: 0;
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes heroCopyTitleScale {
  0% {
    transform: scale(0.96);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes heroCopyLeadReveal {
  0% {
    opacity: 0;
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes heroOrnamentSweep {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.96;
  }
}

@keyframes heroOrnamentRevealClip {
  0% {
    clip-path: circle(0% at 74% 52%);
  }

  100% {
    clip-path: circle(120% at 74% 52%);
  }
}

@keyframes heroOrnamentRevealOpacity {
  0% {
    opacity: 0;
  }

  55% {
    opacity: 0.28;
  }

  100% {
    opacity: 0.96;
  }
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2,
.cta-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.scenario-section,
.advantages-section,
.industries-section,
.vacancies-section,
.trust-section,
.cta-section {
  padding: var(--space-7) 0;
}

.scenario-section {
  padding-bottom: calc(var(--space-7) - 20px);
}

.scenario-section {
  padding-top: calc(var(--space-7) - 36px);
}

.scenario-grid,
.advantages-grid,
.industries-grid,
.vacancies-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

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

.scenario-card,
.adv-card,
.industry-card,
.vacancy-card,
.job-seekers-panel,
.cta-panel {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 42, 92, 0.08);
  box-shadow: var(--shadow-soft);
}

.scenario-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.scenario-card-soft {
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.84);
}

.scenario-visual {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 214px;
  height: 214px;
  pointer-events: none;
  z-index: 0;
}

.scenario-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.92;
  transform: rotate(15deg);
  transform-origin: center center;
  filter: drop-shadow(0 14px 32px rgba(201, 214, 235, 0.12));
}

.scenario-card-business .scenario-visual img {
  transform: rotate(15deg);
}

.scenario-card-job .scenario-visual img {
  transform: rotate(15deg);
}

.scenario-card > *:not(.scenario-visual),
.scenario-card-soft > *:not(.scenario-visual) {
  position: relative;
  z-index: 1;
}

.adv-card img,
.industry-card img {
  width: 20px;
  height: 20px;
}

.scenario-tag {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-card h3,
.adv-card h3,
.industry-card h3,
.vacancy-card h3,
.job-seekers-copy h3,
.footer-column h3 {
  margin: 0;
  color: var(--navy);
}

.scenario-card h3 {
  max-width: 360px;
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.scenario-card p:not(.scenario-tag),
.industry-card p,
.adv-card p,
.vacancy-meta,
.job-seekers-copy p,
.footer-brand p,
.footer-column p {
  color: var(--muted);
  line-height: 1.65;
}

.scenario-card p:not(.scenario-tag) {
  max-width: 430px;
  margin: 16px 0 0;
  font-size: 16px;
}

.scenario-card ul,
.compact-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.scenario-card ul li,
.compact-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.scenario-card ul li::before,
.compact-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.text-link img {
  width: 15px;
  height: 15px;
}

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

.adv-card {
  position: relative;
  overflow: hidden;
  padding: 32px 28px 30px;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.88));
}

.adv-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 42, 92, 0.07), rgba(7, 42, 92, 0));
  pointer-events: none;
}

.adv-card > * {
  position: relative;
  z-index: 1;
}

.adv-card-icon {
  margin-bottom: 24px;
}

.adv-card h3 {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.adv-card p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.industries-layout,
.vacancies-layout {
  display: grid;
  gap: 34px;
}

.industries-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.industries-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.industry-visual {
  overflow: hidden;
  margin-top: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

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

.industry-card {
  position: relative;
  overflow: hidden;
  padding: 32px 28px 30px;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.88));
}

.industry-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 42, 92, 0.07), rgba(7, 42, 92, 0));
  pointer-events: none;
}

.industry-card > * {
  position: relative;
  z-index: 1;
}

.industry-card-icon {
  margin-bottom: 22px;
}

.industry-card h3 {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.industry-card p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.industries-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(7, 42, 92, 0.96) 0%, rgba(5, 31, 70, 0.98) 100%);
  box-shadow: var(--shadow-card);
}

.industries-note-copy {
  max-width: 760px;
}

.industries-note-label {
  margin: 0;
  color: rgba(243, 230, 230, 0.98);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industries-note-copy p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.7;
}

.industries-note-action {
  flex: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 245, 255, 0.96) 100%);
  color: var(--navy);
}

.industries-note-action:hover {
  color: var(--navy);
}

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

.vacancy-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 22px;
  min-height: 252px;
}

.vacancy-card h3 {
  min-height: 2.45em;
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.vacancy-pay {
  margin: 18px 0 0;
  color: var(--accent);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.vacancy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.vacancy-tags li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 60, 120, 0.06);
  border: 1px solid rgba(15, 60, 120, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.vacancy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.vacancy-link::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.vacancies-actions {
  display: flex;
  justify-content: flex-end;
}

.job-seekers-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
}

.job-seekers-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-seekers-copy {
  padding: 34px;
}

.job-seekers-copy h3 {
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.job-seekers-copy p {
  margin: 18px 0 0;
  font-size: 16px;
}

.trust-logos {
  padding: 8px 0 0;
}

.trust-carousel {
  --logo-gap: 45px;
  --logo-speed: 22s;
  --trust-set-width: 0px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.32) 8%, #000 16%, #000 84%, rgba(0, 0, 0, 0.32) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.32) 8%, #000 16%, #000 84%, rgba(0, 0, 0, 0.32) 92%, transparent 100%);
}

.trust-carousel-track {
  display: flex;
  align-items: center;
  padding: 12px 0 8px;
  width: max-content;
  will-change: transform;
}

.trust-carousel-set {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  flex: 0 0 auto;
  padding-right: var(--logo-gap);
}

.trust-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 64px;
  padding: 0;
}

.trust-logo {
  max-width: none;
  height: auto;
  opacity: 0.58;
}

.trust-logo-kamaz {
  width: 204px;
}

.trust-logo-nefaz {
  width: 284px;
}

.trust-logo-domkor {
  width: 391px;
}

.trust-logo-trucks {
  width: 422px;
}

.trust-logos:hover .trust-logo {
  opacity: 0.72;
}

.trust-logo {
  transition: opacity 220ms ease, transform 220ms ease;
}

.trust-logo-slot:hover .trust-logo {
  transform: translateY(-2px) scale(1.03);
  opacity: 0.9;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 246, 251, 0.98));
}

.cta-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.page-section {
  padding: 0 0 var(--space-6);
}

.page-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.page-card,
.page-panel,
.page-kpi-card,
.process-card,
.faq-card,
.contact-card,
.news-card,
.vacancy-detail-card,
.editorial-card,
.filter-chip,
.map-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(7, 42, 92, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 253, 0.98));
  box-shadow: var(--shadow-soft);
}

.page-card,
.page-panel,
.page-kpi-card,
.process-card,
.faq-card,
.contact-card,
.news-card,
.vacancy-detail-card,
.editorial-card {
  padding: 30px;
}

.page-card::after,
.page-panel::after,
.page-kpi-card::after,
.process-card::after,
.faq-card::after,
.contact-card::after,
.news-card::after,
.vacancy-detail-card::after,
.editorial-card::after,
.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 60, 120, 0.02));
  pointer-events: none;
}

.page-card > *,
.page-panel > *,
.page-kpi-card > *,
.process-card > *,
.faq-card > *,
.contact-card > *,
.news-card > *,
.vacancy-detail-card > *,
.editorial-card > *,
.map-placeholder > * {
  position: relative;
  z-index: 1;
}

.page-panel-dark {
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.3), transparent 34%),
    linear-gradient(145deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
}

.page-panel-dark::after {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02));
}

.page-panel-dark h3,
.page-panel-dark h4,
.page-panel-dark strong {
  color: var(--white);
}

.page-panel-dark p,
.page-panel-dark li,
.page-panel-dark a {
  color: rgba(255, 255, 255, 0.76);
}

.page-card h3,
.page-panel h3,
.page-panel h2,
.page-kpi-card strong,
.process-card h3,
.faq-card h3,
.contact-card h3,
.news-card h3,
.vacancy-detail-card h3,
.editorial-card h3,
.map-placeholder h2 {
  margin: 0;
  color: var(--navy);
}

.page-panel h2,
.map-placeholder h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.page-card p,
.page-panel p,
.process-card p,
.faq-card p,
.contact-card p,
.news-card p,
.vacancy-detail-card p,
.editorial-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

/* Reinforced dark-surface typography rules so accent panels stay readable site-wide. */
.page-panel-dark .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.page-panel-dark h1,
.page-panel-dark h2,
.page-panel-dark h3,
.page-panel-dark h4,
.page-panel-dark strong {
  color: var(--white);
}

.page-panel-dark p,
.page-panel-dark li,
.page-panel-dark a,
.page-panel-dark span,
.page-panel-dark .page-note,
.page-panel-dark .page-list,
.page-panel-dark .page-meta-list {
  color: rgba(255, 255, 255, 0.8);
}

.page-panel-dark a:hover,
.page-panel-dark a:focus-visible {
  color: var(--white);
}

.page-panel-dark .page-list li::before,
.page-panel-dark .page-meta-list li::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.page-icon,
.adv-card-icon,
.industry-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.2), transparent 72%),
    linear-gradient(180deg, rgba(15, 60, 120, 0.12), rgba(15, 60, 120, 0.06));
  border: 1px solid rgba(15, 60, 120, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.page-icon img,
.adv-card-icon img,
.industry-card-icon img {
  width: 28px;
  height: 28px;
}

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

.page-kpi-card strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.page-kpi-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.page-list,
.page-inline-list,
.page-meta-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

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

.page-list li,
.page-meta-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.66;
}

.page-list li::before,
.page-meta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.page-panel-dark .page-list li,
.page-panel-dark .page-meta-list li {
  color: rgba(255, 255, 255, 0.88);
}

.page-panel-dark .page-list li::before,
.page-panel-dark .page-meta-list li::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.page-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-inline-list li,
.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.filter-chip {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.84);
}

.page-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.page-tag-list span,
.vacancy-tag,
.contact-tag,
.news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 60, 120, 0.09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page-media-shell {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 36px;
  box-shadow: var(--shadow-card);
}

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

.page-media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 42, 92, 0), rgba(7, 42, 92, 0.08));
}

.process-card {
  display: grid;
  gap: 18px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.process-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
}

.page-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.page-split-compact {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-top-section {
  padding-top: 34px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border-radius: 40px;
  border: 1px solid rgba(7, 42, 92, 0.08);
  background: var(--navy);
  box-shadow: var(--shadow-card);
}

.about-hero-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(560px, 42%);
  padding: 54px 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-copy .eyebrow,
.about-cta-copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.about-hero h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 3.35vw, 58px);
  line-height: 0.94;
  text-wrap: balance;
}

.about-hero-lead {
  max-width: 29ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.5;
}

.about-hero-note {
  max-width: 34ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.about-hero .page-actions {
  margin-top: 28px;
}

.about-hero-link {
  color: rgba(255, 255, 255, 0.82);
}

.about-hero-link:hover,
.about-hero-link:focus-visible {
  color: var(--white);
}

.about-hero-media {
  position: relative;
  margin: 0;
  min-height: 580px;
  height: 100%;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 31, 70, 0.94) 0%, rgba(7, 42, 92, 0.9) 24%, rgba(7, 42, 92, 0.62) 42%, rgba(7, 42, 92, 0.24) 58%, rgba(7, 42, 92, 0.06) 74%, rgba(7, 42, 92, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 42, 92, 0.04), rgba(7, 42, 92, 0.16));
  pointer-events: none;
}

.about-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: 36px;
  align-items: center;
  padding: 36px;
}

.about-story-copy h2 {
  max-width: 15ch;
}

.about-story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.about-story-orbit {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1 / 1;
}

.about-story-orbit::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 2px dashed rgba(15, 60, 120, 0.16);
  border-radius: 50%;
}

.about-story-center,
.about-story-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.about-story-center {
  inset: 50%;
  width: 144px;
  height: 144px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(7, 42, 92, 0.08);
  background:
    radial-gradient(circle at top, rgba(15, 60, 120, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.98));
  box-shadow:
    0 18px 44px rgba(7, 42, 92, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-story-center img {
  width: 58px;
  height: 58px;
}

.about-story-node {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 42, 92, 0.08);
  box-shadow: 0 16px 36px rgba(7, 42, 92, 0.08);
}

.about-story-node img {
  width: 30px;
  height: 30px;
}

.about-story-node-top {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.about-story-node-left {
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.about-story-node-right {
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.about-story-node-bottom {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.about-adv-card h3 {
  font-size: 24px;
}

.about-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.94));
  box-shadow: var(--shadow-card);
}

.about-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 31, 70, 0.94) 0%, rgba(7, 42, 92, 0.78) 44%, rgba(7, 42, 92, 0.18) 76%),
    url("../img/hero-business-handshake.png");
  background-position: center;
  background-size: cover;
  opacity: 0.96;
}

.about-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.about-cta-copy h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
}

.about-cta-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.72;
}

.about-cta-panel .button-primary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow:
    0 18px 34px rgba(5, 31, 70, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.about-cta-panel .button-primary:hover,
.about-cta-panel .button-primary:focus-visible {
  background: var(--white);
  color: var(--blue);
}

.about-cta-panel .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-cta-panel .button-secondary:hover,
.about-cta-panel .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.vacancy-shell {
  display: grid;
  gap: 24px;
}

.vacancy-filter-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.vacancy-card {
  display: grid;
  gap: 18px;
}

.vacancy-topline,
.news-meta,
.contact-links,
.vacancy-meta,
.vacancy-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vacancy-salary {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(7, 42, 92, 0.08);
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.vacancy-meta span,
.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(7, 42, 92, 0.05);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

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

.vacancy-feature-grid {
  margin-top: 18px;
}

.vacancy-feature-grid span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(15, 60, 120, 0.08);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.faq-card h3 {
  font-size: 20px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.contact-card address {
  margin: 18px 0 0;
  font-style: normal;
  color: var(--muted);
  line-height: 1.72;
}

.contact-links {
  margin-top: 20px;
}

.contact-links a {
  background: rgba(15, 60, 120, 0.08);
}

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

.map-placeholder {
  display: grid;
  align-content: end;
  min-height: 460px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(231, 239, 249, 0.96));
}

.map-placeholder p {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.news-card {
  display: grid;
  gap: 18px;
}

.news-card-link {
  min-height: 100%;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.news-card-link:hover,
.news-card-link:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(15, 60, 120, 0.18);
  box-shadow: 0 30px 72px rgba(5, 31, 70, 0.14);
}

.news-card-link:focus-visible {
  outline: 3px solid rgba(15, 60, 120, 0.18);
  outline-offset: 3px;
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
}

.news-date {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-card-footer {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.news-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 60, 120, 0.08);
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.news-card-link:hover .news-card-arrow,
.news-card-link:focus-visible .news-card-arrow {
  transform: translateX(4px);
  background: rgba(15, 60, 120, 0.14);
  color: var(--navy);
}

.news-landing {
  padding-top: 18px;
}

.news-page-intro {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 26px 0 6px;
}

.news-page-intro h1,
.news-article-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.news-page-lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.news-listing-section {
  padding-top: 24px;
}

.news-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(7, 42, 92, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 253, 0.98));
  box-shadow: var(--shadow-soft);
}

.news-toolbar-controls {
  display: grid;
  gap: 16px;
}

.news-toolbar-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.news-search {
  display: grid;
  gap: 10px;
}

.news-search-label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.news-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(7, 42, 92, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.news-search input::placeholder {
  color: rgba(93, 108, 130, 0.82);
}

.news-search input:hover,
.news-search input:focus-visible {
  border-color: rgba(15, 60, 120, 0.24);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 14px 28px rgba(5, 31, 70, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  outline: none;
}

.news-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-toolbar-count {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.news-filter-pill {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(7, 42, 92, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(7, 42, 92, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-filter-pill:hover,
.news-filter-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 60, 120, 0.2);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(5, 31, 70, 0.08);
  outline: none;
}

.news-filter-pill.is-active,
.news-filter-pill[aria-pressed="true"] {
  border-color: rgba(15, 60, 120, 0.12);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(7, 42, 92, 0.18);
}

.news-grid-rich {
  align-items: stretch;
}

.news-empty-state {
  max-width: 620px;
  margin: 28px auto 0;
  text-align: center;
}

.news-empty-state h3 {
  margin-top: 0;
  font-size: 28px;
}

.news-breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(7, 42, 92, 0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-breadcrumbs a {
  transition: color 180ms ease;
}

.news-breadcrumbs a:hover,
.news-breadcrumbs a:focus-visible {
  color: var(--navy);
}

.news-article-top-section {
  padding-top: 34px;
}

.news-article-hero-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(7, 42, 92, 0.08);
  background: var(--navy);
  box-shadow: var(--shadow-card);
}

.news-article-hero-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(540px, 42%);
  padding: 42px 38px 40px;
}

.news-article-intro {
  max-width: 100%;
  padding: 0;
}

.news-article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.news-article-intro h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 3.15vw, 54px);
  line-height: 0.94;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(5, 31, 70, 0.34);
}

.news-article-hero-lead {
  max-width: 31ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.48;
  text-wrap: pretty;
  text-shadow: 0 8px 20px rgba(5, 31, 70, 0.24);
}

.news-reading-time {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-article-cover {
  position: relative;
  margin: 0;
  min-height: clamp(460px, 46vw, 660px);
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  background: var(--navy);
  box-shadow: none;
  isolation: isolate;
}

.news-article-cover::before {
  display: none;
}

.news-article-cover::after {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 31, 70, 0.9) 0%, rgba(7, 42, 92, 0.82) 24%, rgba(7, 42, 92, 0.56) 40%, rgba(7, 42, 92, 0.26) 56%, rgba(7, 42, 92, 0.08) 72%, rgba(7, 42, 92, 0) 100%),
    linear-gradient(180deg, rgba(7, 42, 92, 0.06), rgba(7, 42, 92, 0.16));
}

.news-article-cover img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.news-article-caption {
  display: none;
}

.news-article-hero-card .news-tag {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.news-article-hero-card .news-date {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.news-article-content-section {
  padding-top: 14px;
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.34fr);
  gap: 24px;
  align-items: start;
}

.news-article-body {
  padding: 38px 40px;
}

.news-article-body > p:first-of-type {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.68;
}

.news-article-body > *:first-child {
  margin-top: 0;
}

.news-article-body h2,
.news-article-body h3 {
  margin: 34px 0 0;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.news-article-body h2 {
  font-size: clamp(28px, 2.2vw, 36px);
}

.news-article-body h2[id] {
  scroll-margin-top: 120px;
}

.news-article-body h3 {
  font-size: 22px;
}

.news-article-body p,
.news-article-body li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.news-article-body p + p,
.news-article-body ul + p,
.news-article-body p + ul,
.news-article-body .page-list + p {
  margin-top: 18px;
}

.news-article-body .page-list {
  margin-top: 18px;
  gap: 14px;
}

.news-article-body blockquote {
  margin: 28px 0 0;
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(171, 36, 33, 0.08);
  background: linear-gradient(180deg, rgba(171, 36, 33, 0.06), rgba(255, 255, 255, 0.72));
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
}

.news-article-aside {
  display: grid;
  gap: 18px;
}

.news-article-outline-card {
  padding: 24px 24px 22px;
}

.news-article-outline-card .eyebrow {
  margin-bottom: 14px;
}

.news-article-outline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-article-outline a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(15, 60, 120, 0.05);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.news-article-outline a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.news-article-outline a:hover,
.news-article-outline a:focus-visible {
  transform: translateY(-2px);
  background: rgba(15, 60, 120, 0.08);
  box-shadow: 0 14px 28px rgba(5, 31, 70, 0.06);
}

.news-article-aside .page-panel {
  position: sticky;
  top: 108px;
}

.news-article-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.68;
}

.news-article-links {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.news-article-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.news-article-links a:hover,
.news-article-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.news-article-links a::after {
  content: "→";
  font-size: 18px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

.business-hero {
  padding-top: 28px;
}

.business-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.business-hero-copy,
.business-hero-visual {
  min-height: 700px;
}

.business-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 252, 0.98));
  border: 1px solid rgba(7, 42, 92, 0.08);
  box-shadow: var(--shadow-card);
}

.business-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 68px);
  line-height: 0.98;
}

.business-hero-copy .hero-lead {
  max-width: 640px;
  margin: 22px 0 0;
}

.business-button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  border: 1px solid rgba(7, 42, 92, 0.1);
}

.business-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.business-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(7, 42, 92, 0.07);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.business-badge::before {
  content: "✔";
  margin-right: 8px;
  color: var(--accent);
}

.business-hero-visual {
  overflow: hidden;
  border-radius: 38px;
  box-shadow: var(--shadow-card);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 88% 100%, 0 100%);
}

.business-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-facts-section {
  margin-top: -32px;
}

.business-facts-section-dark {
  position: relative;
}

.business-facts-section-dark::before {
  content: "";
  position: absolute;
  inset: 24px 0 0;
  background:
    linear-gradient(135deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.94)),
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.22), transparent 28%);
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

.business-facts-section-dark .container {
  position: relative;
  z-index: 1;
}

.business-fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.business-fact-item {
  padding: 34px 24px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.business-fact-item strong {
  display: block;
  color: var(--white);
  font-size: clamp(42px, 4vw, 76px);
  line-height: 0.92;
}

.business-fact-item span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.business-feature-card {
  min-height: 260px;
}

.business-feature-card::before,
.industry-item::before,
.business-specialist-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 98px;
  height: 98px;
  background: linear-gradient(135deg, rgba(15, 60, 120, 0.22), transparent 70%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.business-section-soft {
  position: relative;
}

.business-section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(216, 229, 246, 0.34), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.business-section-diagonal {
  position: relative;
}

.business-section-diagonal::before {
  content: "";
  position: absolute;
  inset: 32px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 248, 252, 0.86));
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 100%);
}

.business-section-diagonal .container,
.business-section-dark .container,
.business-section-soft .container,
.business-section-accent .container,
.business-emotion-section .container,
.business-faq-section .container {
  position: relative;
  z-index: 1;
}

.industries-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.industries-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow-card);
}

.industries-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.industries-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industries-photo-default {
  opacity: 1;
}

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

.industry-item {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(7, 42, 92, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.98));
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.industry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(15, 60, 120, 0.16);
}

.industry-item-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.industry-item h3 {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.02;
}

.industry-item p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.business-emotion-section {
  position: relative;
}

.business-emotion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 246, 252, 0.98));
  box-shadow: var(--shadow-card);
}

.business-emotion-media {
  min-height: 420px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.business-emotion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-emotion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.business-emotion-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.04;
}

.business-emotion-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.business-section-dark {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
}

.business-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.94));
}

.business-section-dark .section-head h2,
.business-section-dark .section-head p,
.business-section-dark .timeline-step h3,
.business-section-dark .timeline-step p,
.business-section-dark .business-case-card strong,
.business-section-dark .business-case-card p {
  color: var(--white);
}

.business-section-dark .timeline-step p,
.business-section-dark .business-case-card p {
  color: rgba(255, 255, 255, 0.7);
}

.industries-showcase:has(.industry-item-machinery:hover) .industries-photo-default,
.industries-showcase:has(.industry-item-construction:hover) .industries-photo-default,
.industries-showcase:has(.industry-item-metallurgy:hover) .industries-photo-default,
.industries-showcase:has(.industry-item-logistics:hover) .industries-photo-default {
  opacity: 0;
}

.industries-showcase:has(.industry-item-machinery:hover) .industries-photo-machinery,
.industries-showcase:has(.industry-item-construction:hover) .industries-photo-construction,
.industries-showcase:has(.industry-item-metallurgy:hover) .industries-photo-metallurgy,
.industries-showcase:has(.industry-item-logistics:hover) .industries-photo-logistics {
  opacity: 1;
}

.business-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  padding-top: 36px;
}

.business-timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 62px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 60, 120, 0.18), rgba(15, 60, 120, 0.7), rgba(15, 60, 120, 0.18));
}

.timeline-step {
  position: relative;
  padding: 0 18px 20px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.timeline-step:not(:last-child)::after {
  display: none;
}

.timeline-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), #1b5ea5);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(15, 60, 120, 0.24);
}

.timeline-step h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

.timeline-step p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

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

.business-specialist-card {
  min-height: 196px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(7, 42, 92, 0.08);
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 253, 0.98));
  box-shadow: var(--shadow-soft);
}

.business-specialist-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(7, 42, 92, 0.06);
  font-size: 28px;
}

.business-specialist-card strong {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.06;
}

.business-specialist-card a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.business-specialist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.business-section-accent {
  position: relative;
}

.business-section-accent::before {
  content: "";
  position: absolute;
  inset: 18px 0 0;
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(219, 232, 248, 0.48), rgba(255, 255, 255, 0));
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 100%);
}

.business-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  padding: 36px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 243, 250, 0.98));
  border: 1px solid rgba(7, 42, 92, 0.08);
  box-shadow: var(--shadow-card);
}

.business-calculator-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.02;
}

.business-calculator-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.business-calculator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.business-calculator-form label {
  display: grid;
  gap: 10px;
}

.business-calculator-form span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.business-calculator-form input,
.business-calculator-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(7, 42, 92, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
}

.business-calculator-native-select {
  display: none;
}

.business-calculator-select {
  position: relative;
}

.business-calculator-select-trigger {
  position: relative;
  width: 100%;
  min-height: 54px;
  padding: 0 52px 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(7, 42, 92, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.business-calculator-select-trigger::before,
.business-calculator-select-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.business-calculator-select-trigger::before {
  transform: translateY(-50%) translateX(-3px) rotate(45deg);
}

.business-calculator-select-trigger::after {
  transform: translateY(-50%) translateX(3px) rotate(-45deg);
}

.business-calculator-select.is-open .business-calculator-select-trigger::before {
  transform: translateY(-50%) translateX(-3px) rotate(-45deg);
}

.business-calculator-select.is-open .business-calculator-select-trigger::after {
  transform: translateY(-50%) translateX(3px) rotate(45deg);
}

.business-calculator-select-trigger:hover,
.business-calculator-select-trigger:focus-visible {
  border-color: rgba(15, 60, 120, 0.22);
  box-shadow: 0 14px 28px rgba(5, 31, 70, 0.08);
  outline: none;
}

.business-calculator-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  gap: 6px;
  max-height: 280px;
  padding: 10px;
  overflow-y: auto;
  border-radius: 22px;
  border: 1px solid rgba(7, 42, 92, 0.12);
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 247, 252, 0.98));
  box-shadow: 0 22px 48px rgba(5, 31, 70, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.business-calculator-select.is-open .business-calculator-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.business-calculator-select-option {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 16px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.business-calculator-select-option:hover,
.business-calculator-select-option:focus-visible {
  background: rgba(15, 60, 120, 0.08);
  outline: none;
}

.business-calculator-select-option.is-selected {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 60, 120, 0.14), rgba(15, 60, 120, 0.08));
  color: var(--navy);
}

.business-calculator-select-option.is-selected::after {
  content: "✓";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}

.business-calculator-result {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.94));
  color: rgba(255, 255, 255, 0.84);
}

.business-calc-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.business-calc-summary strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 0.96;
}

.business-calc-summary p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.business-calc-breakdown {
  display: grid;
  gap: 12px;
}

.business-calc-breakdown article {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.business-calc-breakdown span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.business-calc-breakdown strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.24;
}

.business-calculator-result .page-note {
  color: rgba(255, 255, 255, 0.56);
}

.business-calculator-result .page-actions {
  margin-top: 6px;
}

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

.business-case-card {
  min-height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.business-case-brand {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.business-case-card strong {
  display: block;
  margin-top: 24px;
  font-size: 42px;
  line-height: 0.96;
}

.business-case-card p {
  margin-top: 16px;
}

.business-legal-band {
  position: relative;
}

.business-legal-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(5, 31, 70, 1), rgba(7, 42, 92, 0.98));
}

.business-legal-main {
  min-height: 100%;
}

.business-safety-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.business-safety-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.business-safety-list span::before {
  content: "✔";
  margin-right: 8px;
}

.business-faq {
  display: grid;
  gap: 14px;
}

.business-faq-item {
  border-radius: 24px;
  border: 1px solid rgba(7, 42, 92, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.business-faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 64px 24px 26px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

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

.business-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
}

.business-faq-item[open] summary::after {
  content: "−";
}

.business-faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.72;
}

.business-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.94));
  box-shadow: var(--shadow-card);
}

.business-final-cta img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.business-final-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.business-final-cta-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 3.2vw, 54px);
  line-height: 1.02;
}

.business-final-cta-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.business-v2-hero-copy {
  position: relative;
}

.business-v2-hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 52px 42px auto;
  width: 132px;
  height: 132px;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(15, 60, 120, 0.16), rgba(15, 60, 120, 0));
  pointer-events: none;
}

.business-v2-hero-visual {
  min-height: 700px;
}

.business-v2-problem-card,
.business-v2-module-card,
.business-v2-solution-card,
.business-v2-case-card {
  height: 100%;
}

.business-v2-solution-card h3,
.business-v2-module-card h3,
.business-v2-problem-card h3,
.business-v2-benefit-card h3 {
  font-size: 24px;
  line-height: 1.12;
}

.business-v2-module-card {
  min-height: 220px;
}

.business-v2-benefit-card {
  min-height: 220px;
}

.business-v2-scope {
  align-items: stretch;
}

.business-v2-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.business-v2-tag-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(7, 42, 92, 0.06);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.business-v2-industry-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.business-v2-industry-list div {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(7, 42, 92, 0.04);
}

.business-v2-industry-list h3 {
  font-size: 22px;
}

.business-v2-industry-list p {
  margin-top: 10px;
}

.business-v2-calc-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.business-v2-calc-compare article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.business-v2-calc-compare span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.business-v2-calc-compare strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
}

.business-v2-calc-compare p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.58;
}

.business-v2-case-card strong {
  display: block;
  margin-top: 22px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.02;
}

.business-v2-final {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  padding: 34px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.94));
  box-shadow: var(--shadow-card);
}

.business-v2-final-copy {
  padding: 12px 8px 12px 6px;
}

.business-v2-final-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.02;
}

.business-v2-final-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.business-v2-final-points li {
  color: rgba(255, 255, 255, 0.78);
}

.business-v2-final-points li::before {
  background: var(--accent);
}

.business-v2-form {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 252, 0.99));
}

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

.business-v2-form-grid label,
.business-v2-consent {
  display: grid;
  gap: 10px;
}

.business-v2-form-grid span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.business-v2-form-helper {
  margin: 0 0 14px;
  color: rgba(7, 42, 92, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.business-v2-form-helper span,
.business-v2-required-mark {
  color: var(--accent);
}

.business-v2-form-grid input,
.business-v2-form-grid textarea {
  width: 100%;
  min-height: 54px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(7, 42, 92, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  resize: vertical;
}

.business-v2-form-grid input:focus,
.business-v2-form-grid textarea:focus {
  outline: 2px solid rgba(15, 60, 120, 0.22);
  outline-offset: 1px;
  border-color: rgba(15, 60, 120, 0.3);
}

.business-v2-form-full {
  grid-column: 1 / -1;
}

.business-v2-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.business-v2-consent input {
  margin-top: 2px;
}

.business-v2-form .button {
  margin-top: 20px;
}

.business-v2-form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.business-v2-solution-section {
  position: relative;
}

.business-v2-solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
  align-items: stretch;
}

.business-v2-solution-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.98));
}

.business-v2-solution-intro h3 {
  margin-top: 0;
  font-size: clamp(30px, 2.3vw, 40px);
  line-height: 1.04;
}

.business-v2-solution-intro p:not(.eyebrow) {
  margin-top: auto;
}

.business-v2-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.business-v2-solution-card {
  min-height: 212px;
}

.business-v2-modules-section .section-head {
  max-width: 760px;
}

.business-v2-modules-grid .business-v2-module-card:nth-child(2),
.business-v2-modules-grid .business-v2-module-card:nth-child(5) {
  transform: translateY(20px);
}

.business-v2-benefits-section {
  position: relative;
}

.business-v2-benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 249, 253, 0.98));
}

.business-v2-benefits-section .container {
  position: relative;
  z-index: 1;
}

.business-v2-benefits-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.business-v2-benefit-lead {
  grid-column: span 3;
  padding: 32px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.94));
}

.business-v2-benefit-lead p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
}

.business-v2-benefit-card {
  min-height: 240px;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.98));
}

.business-v2-scope-section {
  position: relative;
}

.business-v2-scope {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.7fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.business-v2-scope-copy h2,
.business-v2-scope-industries h2 {
  font-size: clamp(32px, 2.5vw, 42px);
  line-height: 1.05;
}

.business-v2-scope-copy > p:not(.eyebrow) {
  margin-top: 16px;
  max-width: 540px;
}

.business-v2-scope-visual {
  overflow: hidden;
  border-radius: 34px;
  min-height: 100%;
  box-shadow: var(--shadow-card);
}

.business-v2-scope-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.business-v2-scope-industries {
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
}

.business-v2-industry-list div {
  background: rgba(7, 42, 92, 0.045);
}

.business-v2-workflow-section {
  position: relative;
}

.business-v2-workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(15, 60, 120, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 253, 0.98));
}

.business-v2-workflow-section .container {
  position: relative;
  z-index: 1;
}

.business-v2-workflow-timeline {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.business-v2-workflow-timeline .business-timeline-line {
  top: 64px;
  background: linear-gradient(90deg, rgba(15, 60, 120, 0.06), rgba(15, 60, 120, 0.48), rgba(15, 60, 120, 0.06));
}

.business-v2-workflow-timeline .timeline-step {
  padding: 0 16px 18px;
}

.business-v2-workflow-timeline .timeline-step h3 {
  color: var(--navy);
  font-size: 22px;
}

.business-v2-workflow-timeline .timeline-step p {
  color: var(--muted);
}

.business-v2-calculator-section {
  position: relative;
}

.business-v2-calculator-section::before {
  content: "";
  position: absolute;
  inset: 24px 0 0;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.94));
}

.business-v2-calculator-section .container {
  position: relative;
  z-index: 1;
}

.business-v2-calculator-section .business-calculator {
  padding: 32px;
  border-radius: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 72px rgba(5, 31, 70, 0.22);
}

.business-v2-calculator-section .business-calculator-copy {
  padding: 8px 6px 8px 2px;
}

.business-v2-calculator-section .business-calculator-copy h2 {
  color: var(--white);
}

.business-v2-calculator-section .business-calculator-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
}

.business-v2-calculator-section .business-calculator-form span {
  color: rgba(255, 255, 255, 0.84);
}

.business-v2-calculator-section .business-calculator-form input,
.business-v2-calculator-section .business-calculator-form select {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.business-v2-calculator-section .business-calculator-select-trigger {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.business-v2-calculator-section .business-calculator-select-trigger:hover,
.business-v2-calculator-section .business-calculator-select-trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 16px 32px rgba(5, 31, 70, 0.12);
}

.business-v2-calculator-section .business-calculator-select-menu {
  border-color: rgba(7, 42, 92, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(5, 31, 70, 0.12);
  backdrop-filter: blur(16px);
}

.business-v2-calculator-section .business-calculator-select-option {
  color: var(--navy);
}

.business-v2-calculator-section .business-calculator-select-option:hover,
.business-v2-calculator-section .business-calculator-select-option:focus-visible {
  background: rgba(7, 42, 92, 0.05);
}

.business-v2-calculator-section .business-calculator-select-option.is-selected {
  background: rgba(15, 60, 120, 0.08);
  color: var(--navy);
}

.business-v2-calculator-section .business-calculator-select-option.is-selected::after {
  color: var(--blue);
}

.business-v2-calculator-section .business-calculator-result {
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
}

.business-v2-calculator-section .business-v2-calc-compare article,
.business-v2-calculator-section .business-calc-breakdown article {
  background: rgba(7, 42, 92, 0.045);
}

.business-v2-calculator-section .business-v2-calc-compare span,
.business-v2-calculator-section .business-calc-breakdown span {
  color: rgba(7, 42, 92, 0.56);
}

.business-v2-calculator-section .business-v2-calc-compare strong,
.business-v2-calculator-section .business-calc-summary strong,
.business-v2-calculator-section .business-calc-breakdown strong {
  color: var(--navy);
}

.business-v2-calculator-section .business-v2-calc-compare p,
.business-v2-calculator-section .business-calc-summary p,
.business-v2-calculator-section .business-calculator-result .page-note {
  color: var(--muted);
}

.business-v2-calculator-section .button-primary {
  background: var(--navy);
  box-shadow:
    0 18px 40px rgba(7, 42, 92, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.business-v2-proof-section .section-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
}

.business-v2-proof-section .section-head .eyebrow,
.business-v2-proof-section .section-head h2,
.business-v2-proof-section .section-head p {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.business-v2-proof-section .section-head h2 {
  max-width: 980px;
}

.business-v2-proof-section .section-head p {
  max-width: 760px;
}

.business-v2-proof-section .trust-logos {
  margin-top: 40px;
  margin-bottom: 52px;
  padding-top: 0;
}

.business-v2-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 24px;
}

.business-v2-proof-card {
  min-height: 132px;
  display: flex;
  align-items: flex-end;
}

.business-v2-proof-card strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.18;
}

.business-v2-case-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
}

.business-v2-case-card h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.business-v2-case-card p {
  margin: 0;
}

.business-v2-case-card strong {
  margin-top: 6px;
}

@media (max-width: 1060px) {
  .business-v2-solution-layout,
  .business-v2-scope {
    grid-template-columns: 1fr;
  }

  .business-v2-solution-grid,
  .business-v2-benefits-layout,
  .business-v2-proof-strip,
  .business-v2-workflow-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-v2-benefit-lead {
    grid-column: 1 / -1;
  }

  .business-v2-scope-visual img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .business-v2-solution-grid,
  .business-v2-benefits-layout,
  .business-v2-proof-strip,
  .business-v2-workflow-timeline {
    grid-template-columns: 1fr;
  }

  .business-v2-modules-grid .business-v2-module-card:nth-child(2),
  .business-v2-modules-grid .business-v2-module-card:nth-child(5) {
    transform: none;
  }

  .business-v2-benefit-lead {
    padding: 24px;
  }

  .business-v2-proof-card {
    min-height: 0;
  }

  .business-v2-scope-visual img {
    min-height: 300px;
  }
}

.page-business {
  background:
    linear-gradient(180deg, #f4f7fb 0%, #f7f9fc 26%, #f3f6fa 100%);
}

.page-business .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 42, 92, 0.06);
  backdrop-filter: blur(10px);
}

.page-business .hero {
  padding: 56px 0 64px;
}

.page-business .hero-backdrop {
  background:
    radial-gradient(circle at 12% 22%, rgba(15, 60, 120, 0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(142, 36, 37, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 252, 0.82) 100%);
}

.page-business .business-hero-shell {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 40px;
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.page-business .business-hero-copy,
.page-business .business-hero-visual {
  min-height: 520px;
}

.page-business .business-hero-copy {
  position: relative;
  z-index: 1;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.page-business .business-v2-hero-copy::after {
  display: none;
}

.page-business .business-hero-copy h1 {
  max-width: 520px;
  font-size: clamp(30px, 3.2vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-business .business-hero-copy .hero-lead {
  max-width: 470px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6981;
}

.page-business .hero-static-actions {
  margin-top: 28px;
  gap: 14px;
}

.page-business .button {
  min-height: 56px;
  border-radius: 16px;
}

.page-business .button-primary {
  background: var(--navy);
  box-shadow:
    0 18px 38px rgba(7, 42, 92, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.page-business .business-button-secondary,
.page-business .button-secondary {
  background: #ffffff;
  border-color: rgba(7, 42, 92, 0.12);
  color: var(--navy);
  box-shadow: none;
}

.page-business .business-badge-row {
  margin-top: 20px;
  gap: 10px;
}

.page-business .business-badge {
  min-height: 34px;
  padding: 0 13px;
  background: rgba(235, 242, 251, 0.9);
  color: #0d3b73;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page-business .business-hero-visual {
  position: relative;
  border-radius: 34px;
  clip-path: none;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(236, 242, 248, 0.96), rgba(221, 231, 242, 0.92));
  box-shadow: 0 28px 72px rgba(5, 31, 70, 0.12);
}

.page-business .business-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
}

.page-business .business-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 62% center;
  object-fit: cover;
}

.page-business .business-facts-section {
  margin-top: 0;
  padding: 24px 0 56px;
}

.page-business .business-facts-section-dark::before {
  inset: 0;
  clip-path: none;
  border-radius: 0;
  background: linear-gradient(135deg, #072a5c 0%, #0b3365 100%);
}

.page-business .business-fact-strip {
  gap: 16px;
  border-radius: 0;
  overflow: visible;
}

.page-business .business-fact-item {
  min-height: 148px;
  padding: 24px 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-business .business-fact-item strong {
  font-size: clamp(32px, 2.8vw, 44px);
  line-height: 0.92;
}

.page-business .business-fact-item span {
  margin-top: 12px;
  line-height: 1.6;
}

.page-business .page-section {
  padding: 112px 0;
}

.page-business .page-section-compact {
  padding: 88px 0;
}

.page-business .page-section-spacious {
  padding: 128px 0;
}

.page-business .section-head {
  max-width: 820px;
  margin-bottom: 32px;
}

.page-business .section-head h2 {
  max-width: 700px;
  font-size: clamp(32px, 2.8vw, 46px);
  line-height: 1.06;
}

.page-business .section-head p:not(.eyebrow) {
  max-width: 620px;
}

.page-business .page-card,
.page-business .page-panel {
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(5, 31, 70, 0.06);
}

.page-business .page-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 254, 0.98));
}

.page-business .page-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.98));
}

.page-business .page-card::after,
.page-business .page-panel::after {
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 60, 120, 0.012));
}

.page-business .page-grid {
  gap: 20px;
}

.page-business .business-v2-solution-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
}

.page-business .business-v2-solution-intro {
  min-height: 0;
}

.page-business .business-v2-solution-intro h3 {
  max-width: 420px;
}

.page-business .business-v2-solution-grid {
  gap: 20px;
}

.page-business .business-v2-solution-card {
  min-height: 0;
}

.page-business .business-v2-cycle-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-business .business-v2-modules-section {
  position: relative;
}

.page-business .business-v2-modules-section::before {
  content: "";
  position: absolute;
  inset: 24px 0 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(15, 60, 120, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-business .business-v2-modules-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-business .business-v2-modules-grid .business-v2-module-card:nth-child(2),
.page-business .business-v2-modules-grid .business-v2-module-card:nth-child(5) {
  transform: none;
}

.page-business .business-v2-module-card {
  min-height: 188px;
}

.page-business .business-v2-benefits-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 247, 252, 0.98));
}

.page-business .business-v2-benefits-layout {
  gap: 20px;
}

.page-business .business-v2-benefit-lead {
  border-radius: 28px;
  background: linear-gradient(135deg, #072a5c 0%, #0d3b73 100%);
}

.page-business .business-v2-benefit-card {
  min-height: 210px;
}

.page-business .business-v2-comparison-section {
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.9), rgba(255, 255, 255, 0.98));
}

.page-business .business-v2-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.page-business .business-v2-compare-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 30px;
}

.page-business .business-v2-compare-card .contact-tag {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-business .business-v2-compare-card .page-list {
  margin-top: 18px;
  gap: 14px;
}

.page-business .business-v2-compare-card .page-list-negative li {
  padding-left: 24px;
}

.page-business .business-v2-compare-card .page-list-negative li::before {
  top: 12px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(171, 36, 33, 0.08);
}

.page-business .business-v2-compare-card .page-list-positive li {
  padding-left: 34px;
}

.page-business .business-v2-compare-card .page-list-positive li::before {
  content: "✓";
  top: 4px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.page-business .business-v2-compare-card.page-panel-dark {
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(5, 31, 70, 0.98), rgba(7, 42, 92, 0.95));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(5, 31, 70, 0.16);
}

.page-business .business-v2-compare-card.page-panel-dark::after {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.03));
}

.page-business .business-v2-compare-card.page-panel-dark .contact-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.page-business .business-v2-compare-card.page-panel-dark .page-list li {
  color: rgba(255, 255, 255, 0.8);
}

.page-business .business-v2-compare-card.page-panel-dark .page-list li::before {
  background: rgba(255, 255, 255, 0.78);
}

.page-business .business-v2-compare-card.page-panel-dark .page-list-positive li::before {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.page-business .business-v2-scope {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.92fr);
  gap: 24px;
}

.page-business .business-v2-scope-copy {
  order: 1;
}

.page-business .business-v2-scope-visual {
  order: 2;
}

.page-business .business-v2-scope-industries {
  order: 3;
  grid-column: 1 / -1;
}

.page-business .business-v2-scope-visual img {
  min-height: 440px;
}

.page-business .business-v2-tag-grid {
  gap: 10px;
}

.page-business .business-v2-tag-grid span {
  min-height: 40px;
  padding: 0 14px;
  background: #eef3fa;
}

.page-business .business-v2-industry-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-business .business-v2-industry-list div {
  padding: 20px 22px;
}

.page-business .business-v2-workflow-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 247, 252, 0.98));
}

.page-business .business-timeline {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding-top: 36px;
}

.page-business .timeline-step {
  padding: 0 16px 20px;
}

.page-business .business-v2-calculator-section::before {
  inset: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 60, 120, 0.16), transparent 26%),
    linear-gradient(135deg, #072a5c 0%, #0b3568 100%);
}

.page-business .business-v2-calculator-section .business-calculator {
  padding: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.page-business .business-v2-calculator-section .business-calculator-copy {
  padding-right: 18px;
}

.page-business .business-v2-calculator-section .business-calculator-result {
  padding: 26px;
  border-radius: 28px;
  box-shadow:
    0 18px 40px rgba(5, 31, 70, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.page-business .business-v2-calc-compare {
  gap: 10px;
}

.page-business .business-v2-calc-compare strong,
.page-business .business-calc-summary strong {
  letter-spacing: -0.04em;
}

.page-business .business-v2-proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-business .business-v2-proof-section .section-head {
  max-width: 1040px;
}

.page-business .business-v2-proof-section .trust-logos {
  margin-bottom: 56px;
}

.page-business .business-v2-proof-card {
  min-height: 112px;
}

.page-business .business-v2-proof-card strong {
  font-size: 20px;
}

.page-business .business-v2-case-card {
  gap: 10px;
}

.page-business .business-v2-case-card strong {
  font-size: 30px;
}

.page-business .business-faq-section {
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.7), rgba(247, 249, 252, 0.96));
}

.page-business .business-faq-item {
  border-radius: 20px;
}

.page-business .business-v2-final {
  border-radius: 32px;
  background: linear-gradient(135deg, #072a5c 0%, #0c376c 100%);
}

.page-business .business-v2-form {
  border-radius: 24px;
}

.page-business .business-v2-form-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-business .business-v2-final-copy {
  padding-right: 16px;
}

.page-business .business-support-strip .business-fact-item strong {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-business .business-support-strip .business-fact-item span {
  font-size: 14px;
}

@media (max-width: 1060px) {
  .page-business .business-hero-shell,
  .page-business .business-v2-solution-layout,
  .page-business .business-v2-scope,
  .page-business .business-v2-calculator-section .business-calculator,
  .page-business .business-v2-compare-grid,
  .page-business .business-v2-form-grid-compact {
    grid-template-columns: 1fr;
  }

  .page-business .business-hero-shell {
    gap: 24px;
  }

  .page-business .business-v2-proof-strip,
  .page-business .business-v2-industry-list,
  .page-business .business-v2-modules-grid,
  .page-business .business-v2-cycle-grid,
  .page-business .business-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-business .business-v2-scope-industries {
    grid-column: auto;
  }

  .page-business .business-v2-proof-section .section-head {
    max-width: 860px;
  }

  .page-business .business-hero-copy,
  .page-business .business-hero-visual {
    min-height: 0;
  }

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

  .page-business .business-hero-visual {
    min-height: 400px;
    border-radius: 30px;
  }

  .page-business .business-hero-visual::before {
    inset: 0 0 auto 0;
    width: auto;
    height: 22%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
  }
}

@media (max-width: 760px) {
  .page-business .hero {
    padding: 28px 0 40px;
  }

  .page-business .page-section {
    padding: 64px 0;
  }

  .page-business .page-section-compact {
    padding: 56px 0;
  }

  .page-business .page-section-spacious {
    padding: 72px 0;
  }

  .page-business .business-hero-copy {
    padding: 0;
  }

  .page-business .business-hero-copy h1 {
    font-size: 34px;
    line-height: 0.98;
  }

  .page-business .business-hero-copy .hero-lead {
    font-size: 16px;
  }

  .page-business .business-hero-visual {
    min-height: 300px;
    border-radius: 26px;
  }

  .page-business .business-badge-row {
    gap: 8px;
  }

  .page-business .business-badge {
    min-height: 32px;
    font-size: 10px;
  }

  .page-business .business-fact-strip,
  .page-business .business-v2-proof-strip,
  .page-business .business-v2-industry-list,
  .page-business .business-v2-modules-grid,
  .page-business .business-v2-cycle-grid,
  .page-business .business-timeline,
  .page-business .business-v2-form-grid-compact {
    grid-template-columns: 1fr;
  }

  .page-business .section-head h2 {
    font-size: 34px;
  }

  .business-v2-proof-section .trust-logos {
    margin-top: 28px;
    margin-bottom: 36px;
  }

  .page-business .business-v2-calculator-section .business-calculator {
    padding: 24px;
  }

  .page-business .business-fact-item {
    min-height: 0;
    padding: 20px 18px 18px;
  }
}

.page-contacts {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 24%, #f7f9fc 100%);
}

.page-contacts .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 42, 92, 0.06);
  backdrop-filter: blur(10px);
}

.page-contacts .header-actions .contact-link {
  visibility: hidden;
  pointer-events: none;
}

.page-contacts .contacts-layout {
  display: grid;
  gap: 36px;
}

.page-contacts .reveal,
.page-contacts .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.page-contacts .contacts-map-shell {
  position: relative;
  display: block;
  isolation: isolate;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
  border-radius: 32px;
  border: 1px solid rgba(7, 42, 92, 0.08);
  box-shadow: 0 18px 40px rgba(5, 31, 70, 0.06);
}

.page-contacts .contacts-main-section {
  padding: 0 0 96px;
}

.page-contacts .contacts-map-shell-full {
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.page-contacts .contacts-map-widget {
  height: 512px;
  background: linear-gradient(180deg, rgba(233, 240, 248, 0.84), rgba(244, 247, 251, 0.94));
}

.page-contacts .contacts-map-widget .dg-widget-link {
  display: none;
}

.page-contacts .contacts-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 28px;
}

.page-contacts .contacts-info-panel {
  display: grid;
  gap: 0;
  height: 100%;
  padding: 40px 36px;
  border-radius: 30px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-contacts .contacts-info-panel::after {
  display: none;
}

.page-contacts .contacts-info-group {
  display: grid;
  gap: 12px;
  padding: 0 0 26px;
}

.page-contacts .contacts-info-group + .contacts-info-group {
  padding-top: 26px;
  border-top: 1px solid rgba(7, 42, 92, 0.08);
}

.page-contacts .contacts-contact-row {
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  column-gap: 16px;
}

.page-contacts .contacts-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
  border: 1px solid rgba(7, 42, 92, 0.06);
}

.page-contacts .contacts-icon-box img {
  width: 18px;
  height: 18px;
}

.page-contacts .contacts-contact-copy {
  display: grid;
  gap: 10px;
}

.page-contacts .contacts-info-group h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-contacts .contacts-contact-row {
  grid-template-columns: 1fr;
  row-gap: 18px;
}

.page-contacts .contacts-info-group h2 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.15;
}

.page-contacts .contacts-secondary-link,
.page-contacts .contacts-info-group p,
.page-contacts .contacts-info-group address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
}

.page-contacts .contacts-form-column {
  display: grid;
  gap: 20px;
  align-content: stretch;
  height: 100%;
  padding: 40px 36px;
  border-radius: 30px;
  border: 1px solid rgba(7, 42, 92, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(5, 31, 70, 0.05);
}

.page-contacts .contacts-form-copy {
  padding: 0;
}

.page-contacts .contacts-form-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-contacts .contacts-form-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.page-contacts .contacts-form-panel {
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

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

.page-contacts .contacts-contact-line {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

.page-contacts .contacts-contact-meta {
  display: grid;
  gap: 6px;
}

.page-contacts .contacts-primary-link {
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-contacts .contacts-requisites-card {
  display: grid;
  gap: 18px;
  margin-top: 8px;
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f6fd 100%);
  border: 1px solid rgba(7, 42, 92, 0.05);
}

.page-contacts .contacts-requisites-card h2 {
  margin: 0;
  color: var(--accent);
  font-size: 16px;
}

.page-contacts .contacts-requisites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.page-contacts .contacts-requisites-grid div {
  display: grid;
  gap: 8px;
}

.page-contacts .contacts-requisites-grid span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.page-contacts .contacts-requisites-grid strong {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.page-contacts .contacts-download {
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.page-contacts .contacts-form-grid label {
  display: grid;
  gap: 10px;
}

.page-contacts .contacts-form-helper {
  margin: 0 0 14px;
  color: rgba(7, 42, 92, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.page-contacts .contacts-form-helper span,
.page-contacts .contacts-required-mark {
  color: var(--accent);
}

.page-contacts .contacts-form-grid span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.page-contacts .contacts-form-grid input,
.page-contacts .contacts-form-grid select,
.page-contacts .contacts-form-grid textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(7, 42, 92, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
}

.page-contacts .contacts-form-grid textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.page-contacts .contacts-form-grid .business-calculator-select-trigger {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(7, 42, 92, 0.12);
  box-shadow: none;
}

.page-contacts .contacts-form-grid .business-calculator-select-trigger:hover,
.page-contacts .contacts-form-grid .business-calculator-select-trigger:focus-visible {
  border-color: rgba(15, 60, 120, 0.24);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 14px 28px rgba(5, 31, 70, 0.08);
}

.page-contacts .contacts-form-grid .business-calculator-select-menu {
  border-color: rgba(7, 42, 92, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(5, 31, 70, 0.12);
}

.page-contacts .contacts-form-full {
  grid-column: 1 / -1;
}

.page-contacts .contacts-consent {
  margin-top: 18px;
  color: var(--muted);
}

.page-contacts .contacts-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

@media (max-width: 1060px) {
  .page-contacts .contacts-bottom-grid {
    grid-template-columns: 1fr;
  }

  .page-contacts .contacts-requisites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-contacts .contacts-main-section {
    padding: 0 0 72px;
  }

  .page-contacts .contacts-info-panel,
  .page-contacts .contacts-form-column {
    padding: 24px;
  }

  .page-contacts .contacts-map-widget {
    height: 420px;
  }

  .page-contacts .contacts-form-grid {
    grid-template-columns: 1fr;
  }

  .page-contacts .contacts-requisites-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  margin-top: var(--space-6);
  padding: 68px 0 44px;
  background:
    radial-gradient(circle at top right, rgba(142, 36, 37, 0.16), transparent 22%),
    radial-gradient(circle at top left, rgba(15, 60, 120, 0.16), transparent 26%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  align-items: start;
  gap: 28px;
}

.footer-brand img {
  width: 260px;
}

.footer-brand p {
  max-width: 420px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.footer-brand::after {
  content: "Легальный аутстаффинг персонала для промышленного бизнеса.";
  display: block;
  max-width: 360px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.7;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 16px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column a,
.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .back-to-top {
    width: 50px;
    height: 50px;
    right: calc(env(safe-area-inset-right, 0px) + var(--back-to-top-offset-right, 16px));
    bottom: calc(env(safe-area-inset-bottom, 0px) + var(--back-to-top-offset-bottom, 16px));
    border-radius: 16px;
  }

  .back-to-top img {
    width: 22px;
    height: 22px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

[data-float] {
  transition: transform 260ms ease-out;
  will-change: transform;
}

.scenario-card:hover,
.adv-card:hover,
.industry-card:hover,
.vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

@media (max-width: 1280px) {
  .site-nav {
    gap: 18px;
    font-size: 13px;
  }

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

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

  .industries-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1060px) {
  .container {
    width: min(var(--container), calc(100vw - 32px));
  }

  .hero-stage {
    width: min(var(--container), calc(100vw - 32px));
    margin: 0 auto;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .language-dropdown {
    top: calc(100% + 8px);
    right: 0;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .header-actions {
    display: none;
  }

  .scenario-grid,
  .job-seekers-panel,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-grid-4,
  .page-kpi-grid,
  .editorial-grid,
  .news-grid,
  .business-fact-strip,
  .business-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-grid-2,
  .page-grid-3,
  .page-split,
  .page-split-compact,
  .vacancy-detail-grid,
  .contacts-grid,
  .news-toolbar,
  .news-article-layout,
  .contact-columns,
  .business-hero-shell,
  .industries-showcase,
  .business-calculator,
  .business-final-cta {
    grid-template-columns: 1fr;
  }

  .business-timeline,
  .business-specialists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industries-media {
    min-height: 420px;
  }

  .industries-card-grid,
  .business-calculator-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-step:not(:last-child)::after {
    display: none;
  }

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

  .industries-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

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

  .trust-carousel {
    --logo-gap: 14px;
  }

  .news-article-aside .page-panel {
    position: relative;
    top: auto;
  }

  .news-article-intro h1 {
    max-width: 100%;
  }

  .news-article-cover {
    min-height: 420px;
  }

  .news-article-hero-copy {
    width: min(460px, 48%);
    padding: 34px 30px 32px;
  }

  .about-hero,
  .about-hero-media,
  .about-hero-media img {
    min-height: 520px;
  }

  .about-hero-copy {
    width: min(500px, 50%);
    padding: 42px 34px 38px;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 0;
  }

  .brand img {
    width: 176px;
  }

  .contact-link span {
    display: none;
  }

  .contact-link,
  .lang-switch {
    min-width: 44px;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .lang-switch span {
    display: none;
  }

  .lang-switch::after {
    right: 12px;
  }

  .language-dropdown {
    right: -6px;
    min-width: 214px;
  }

  .hero {
    padding-top: 24px;
  }

  .news-page-intro h1,
  .news-article-intro h1 {
    font-size: 32px;
  }

  .news-page-lead {
    font-size: 16px;
  }

  .news-article-top-section {
    padding-top: 18px;
  }

  .news-breadcrumbs {
    margin-bottom: 16px;
    gap: 8px;
    font-size: 12px;
  }

  .news-article-hero-card {
    border-radius: 28px;
  }

  .news-article-hero-copy {
    width: 100%;
    padding: 22px 20px 24px;
  }

  .news-article-meta-line {
    gap: 10px;
    margin-bottom: 10px;
  }

  .news-article-intro h1 {
    max-width: 10ch;
    font-size: 30px;
    line-height: 0.95;
  }

  .news-article-hero-lead {
    max-width: 30ch;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

  .news-reading-time {
    min-height: 0;
    padding: 0;
    font-size: 11px;
  }

  .news-article-cover {
    min-height: 380px;
  }

  .news-article-cover::after {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(5, 31, 70, 0.92) 0%, rgba(7, 42, 92, 0.78) 34%, rgba(7, 42, 92, 0.34) 66%, rgba(7, 42, 92, 0.08) 100%);
  }

  .about-top-section {
    padding-top: 18px;
  }

  .about-hero {
    min-height: 520px;
    border-radius: 28px;
  }

  .about-hero-copy {
    width: 100%;
    padding: 26px 22px 28px;
    justify-content: flex-start;
  }

  .about-hero h1 {
    max-width: 10ch;
    font-size: 34px;
  }

  .about-hero-lead {
    max-width: 30ch;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .about-hero-note {
    max-width: 32ch;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.62;
  }

  .about-hero-media,
  .about-hero-media img {
    min-height: 520px;
  }

  .about-hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 31, 70, 0.92) 0%, rgba(7, 42, 92, 0.82) 30%, rgba(7, 42, 92, 0.42) 58%, rgba(7, 42, 92, 0.14) 100%);
  }

  .about-story {
    gap: 24px;
    padding: 28px 24px;
  }

  .about-story-copy h2,
  .about-cta-copy h2 {
    max-width: 100%;
  }

  .about-story-visual {
    min-height: 240px;
  }

  .about-story-orbit {
    width: min(100%, 280px);
  }

  .about-story-center {
    width: 116px;
    height: 116px;
  }

  .about-story-center img {
    width: 46px;
    height: 46px;
  }

  .about-story-node {
    width: 56px;
    height: 56px;
  }

  .about-story-node img {
    width: 24px;
    height: 24px;
  }

  .page-about .page-grid-4 {
    grid-template-columns: 1fr;
  }

  .about-cta-panel {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .about-cta-copy h2 {
    font-size: 32px;
  }

  .about-cta-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-slider {
    min-height: 520px;
    aspect-ratio: auto;
  }

  .hero-overlay-inner {
    display: block;
  }

  .hero-content {
    width: min(100%, 420px);
  }

  .hero-copy-stage {
    min-height: 332px;
  }

  .hero-slide-title {
    font-size: 34px;
    line-height: 1;
  }

  .hero-lead,
  .industries-copy p:not(.eyebrow),
  .cta-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-slide-copy {
    width: 100%;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-static-actions {
    gap: 14px;
    margin-top: 28px;
  }

  .hero-link {
    font-size: 14px;
  }

  .hero-slider-controls {
    right: 16px;
    gap: 16px;
  }

  .hero-slider-progress-stack {
    gap: 12px;
    width: 11px;
  }

  .hero-slider-segment {
    width: 11px;
    height: 68px;
  }

  .hero-slider-segment.is-active {
    height: 138px;
  }

  .hero-slider-liquid::before {
    inset: 7px 2px auto;
  }

  .hero-slider-liquid-fill::after {
    inset: auto 2px 7px;
  }

  .hero-slider-arrow {
    width: 22px;
    height: 22px;
  }

  .hero-slider-arrow-chevron {
    width: 14px;
    height: 14px;
  }

  .section-head h2,
  .cta-copy h2 {
    font-size: 34px;
  }

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

  .trust-strip-item {
    min-height: 96px;
    padding: 20px 18px;
  }

  .trust-strip-item:nth-child(odd) {
    border-left: 0;
  }

  .trust-strip-item:nth-child(n + 3) {
    border-top: 1px solid rgba(7, 42, 92, 0.08);
  }

  .trust-strip-item + .trust-strip-item {
    border-left: 1px solid rgba(7, 42, 92, 0.08);
  }

  .trust-strip-copy strong {
    font-size: 24px;
  }

  .scenario-card,
  .adv-card,
  .industry-card,
  .vacancy-card,
  .page-card,
  .page-panel,
  .page-kpi-card,
  .process-card,
  .faq-card,
  .contact-card,
  .news-card,
  .vacancy-detail-card,
  .editorial-card,
  .business-hero-copy,
  .business-calculator,
  .business-final-cta-copy,
  .business-emotion-copy,
  .job-seekers-copy,
  .cta-panel,
  .news-toolbar,
  .news-article-body {
    padding: 24px;
  }

  .page-icon,
  .adv-card-icon,
  .industry-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .page-icon img,
  .adv-card-icon img,
  .industry-card-icon img {
    width: 26px;
    height: 26px;
  }

  .scenario-card h3,
  .job-seekers-copy h3 {
    font-size: 28px;
  }

  .advantages-grid,
  .industries-grid,
  .vacancies-grid,
  .page-grid-3,
  .page-grid-4,
  .page-kpi-grid,
  .editorial-grid,
  .news-grid,
  .business-fact-strip,
  .business-cases-grid,
  .business-timeline,
  .business-specialists-grid,
  .industries-card-grid,
  .business-calculator-form {
    grid-template-columns: 1fr;
  }

  .vacancy-card h3 {
    min-height: 0;
  }

  .business-hero-copy,
  .business-hero-visual {
    min-height: 0;
  }

  .business-hero-copy h1 {
    font-size: 38px;
  }

  .business-hero-visual img,
  .business-final-cta img,
  .business-emotion-media img {
    min-height: 300px;
  }

  .industries-media {
    min-height: 300px;
  }

  .business-emotion-panel,
  .business-final-cta {
    grid-template-columns: 1fr;
  }

  .business-v2-calc-compare,
  .business-v2-form-grid,
  .business-v2-final {
    grid-template-columns: 1fr;
  }

  .business-v2-final {
    padding: 24px;
  }

  .business-emotion-media {
    clip-path: none;
    min-height: 300px;
  }

  .industry-item,
  .business-specialist-card,
  .business-fact-item,
  .timeline-step {
    min-height: 0;
  }

  .business-timeline-line {
    display: none;
  }

  .business-case-card strong {
    font-size: 34px;
  }

  .map-placeholder {
    min-height: 320px;
    padding: 24px;
  }

  .news-toolbar {
    gap: 18px;
    margin-bottom: 24px;
  }

  .news-filter-pills {
    gap: 10px;
  }

  .news-filter-pill {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .news-article-cover {
    min-height: 340px;
  }

  .news-article-outline-card {
    padding: 20px;
  }

  .news-article-outline a {
    min-height: 46px;
    padding: 0 14px;
    font-size: 13px;
  }

  .news-article-body h2 {
    font-size: 28px;
  }

  .news-article-body p,
  .news-article-body li {
    font-size: 16px;
  }

  .process-card img,
  .news-card img {
    height: 200px;
  }

  .vacancies-actions {
    justify-content: flex-start;
  }

  .trust-logos {
    padding: 0;
  }

  .trust-carousel {
    --logo-gap: 13px;
    --logo-speed: 18s;
  }

  .trust-logo-slot {
    min-height: 52px;
    padding: 0;
  }

  .trust-carousel-track {
    padding: 18px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .hero-slider-ornament {
    opacity: 0.96;
    animation: none !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
  }

  .hero-slide-copy .hero-slide-title-word,
  .hero-slide-copy .hero-lead,
  .hero-slide-copy .hero-slide-title {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .hero-slide,
  .hero-slide.is-active {
    animation: none !important;
    clip-path: none !important;
  }

  .trust-carousel-track {
    animation: none !important;
    transform: translateX(0) !important;
  }
}

@media (max-width: 760px) {
  .hero-slider {
    min-height: 460px;
    aspect-ratio: auto;
  }

  .trust-strip-section {
    margin-top: -12px;
    padding-bottom: 12px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip-item,
  .trust-strip-item + .trust-strip-item {
    border-left: 0;
  }

  .trust-strip-item + .trust-strip-item {
    border-top: 1px solid rgba(7, 42, 92, 0.08);
  }

  .hero-static-actions {
    margin-top: 24px;
  }

  .hero-copy-stage {
    min-height: 288px;
  }

  .hero-slider-controls {
    right: 12px;
    gap: 14px;
  }

  .hero-slider-progress-stack {
    gap: 10px;
    width: 10px;
  }

  .hero-slider-segment {
    width: 10px;
    height: 52px;
  }

  .hero-slider-segment.is-active {
    height: 104px;
  }

  .hero-slider-liquid::before {
    inset: 6px 2px auto;
  }

  .hero-slider-liquid-fill::after {
    inset: auto 2px 6px;
  }

  .hero-slider-arrow {
    width: 20px;
    height: 20px;
  }

  .hero-slider-arrow-chevron {
    width: 12px;
    height: 12px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}

@media (max-width: 1060px) and (min-width: 761px) {
  .map-placeholder {
    min-height: 380px;
  }
}
