:root {
  --color-blue: #24497b;
  --color-blue-dark: #162a45;
  --color-blue-line: #1a3557;
  --color-blue-soft: #b6c8d8;
  --color-bg: #fafafa;
  --color-text: #171717;
  --color-muted: #525252;
  --color-muted-dark: #404040;
  --color-border: #e5e5e5;
  --color-footer: #171717;
  --color-footer-text: #a1a1a1;
  --font-main: Montserrat, Arial, Helvetica, sans-serif;
  --container: 1280px;
  --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}


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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.is-menu-open,
body.is-search-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 1152px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
}

.header-topbar {
  width: 100%;
  height: 32px;
  min-height: 32px;
  background: #24497b;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.header-contacts {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

@media (min-width: 1024px) {
  .header-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.header-contact-link,
.header-phone-link {
  color: #dbeafe;
  text-decoration: none;
  transition: color 180ms ease;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}

.header-contact-link:hover,
.header-contact-link:focus-visible,
.header-phone-link:hover,
.header-phone-link:focus-visible {
  color: #ffffff;
}

.header-contact-icon {
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-main {
  background: #ffffff;
}

.header-main-row {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid #f5f5f5;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  width: 187px;
  height: 28px;
  color: var(--color-blue);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1 1 auto;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  color: #737373;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  text-transform: uppercase;
  transition: color 180ms ease;
  white-space: nowrap;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-blue);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--color-blue);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.search-button,
.menu-button {
  border: 0;
  background: transparent;
  color: #a3a3a3;
  cursor: pointer;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  transition: color 180ms ease;
}

.search-button:hover,
.search-button:focus-visible {
  color: var(--color-blue);
}

.header-search-icon {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-blue);
}

.menu-button__icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-button__icon--close {
  position: absolute;
  opacity: 0;
  transform: scale(0.72) rotate(-45deg);
}

.menu-button.is-open .menu-button__icon--open {
  opacity: 0;
  transform: scale(0.72) rotate(45deg);
}

.menu-button.is-open .menu-button__icon--close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.mobile-menu-contacts {
  display: none;
}

.mobile-menu-contact-icon {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-blue {
  position: relative;
  overflow: hidden;
  background: var(--color-blue);
}

.hero {
  height: 846.75px;
}

.hero::before,
.consult::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero__glow {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.05;
}

.hero__glow--right {
  right: 0;
  top: 0;
  background: var(--color-blue-soft);
}

.hero__glow--left {
  left: 0;
  bottom: 0;
  background: #ffffff;
}

.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  padding-top: 128px;
}

.hero__content {
  width: 896px;
  max-width: 100%;
  text-align: center;
}

.section-kicker {
  min-height: 71px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-kicker span {
  color: var(--color-blue-soft);
  font-size: 14px;
  letter-spacing: 3.2px;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-kicker i,
.split-title i {
  display: block;
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.76;
}

.section-kicker i {
  width: 96px;
  background: rgba(182, 200, 216, 0.62);
  opacity: 1;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  font-weight: 500;
  line-height: 75px;
}

.hero__lead {
  margin: 24px 0 0;
  color: var(--color-blue-soft);
  font-size: 24px;
  font-style: italic;
  line-height: 32px;
}

.hero__text {
  width: 768px;
  max-width: 100%;
  margin: 16px auto 0;
  color: var(--color-blue-soft);
  font-size: 18px;
  line-height: 29.25px;
}

.hero__actions,
.consult__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

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

.button--white {
  background: #ffffff;
  color: var(--color-blue);
  box-shadow: 0 10px 7.5px rgba(0, 0, 0, 0.1), 0 4px 3px rgba(0, 0, 0, 0.1);
}

.button--outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 16px 34px;
}

.button--outline:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.button--dark {
  border: 1px solid var(--color-blue-line);
  background: var(--color-blue-dark);
  color: #ffffff;
  padding: 16px 33px;
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 64px;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 21px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
}

.situations {
  position: relative;
  min-height: 665px;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(to bottom, #ffffff, var(--color-bg), #ffffff);
}

.situations__mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(78px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.situations__mist--one {
  width: 420px;
  height: 420px;
  left: calc(50% - 600px);
  top: 48px;
  background: rgba(182, 200, 216, 0.24);
}

.situations__mist--two {
  width: 380px;
  height: 380px;
  right: calc(50% - 590px);
  bottom: 64px;
  background: rgba(36, 73, 123, 0.16);
}

.corner {
  position: absolute;
  width: 128px;
  height: 128px;
  opacity: 0.35;
  z-index: 0;
}

.corner--top {
  top: 40px;
  right: 40px;
  border-top: 2px solid rgba(36, 73, 123, 0.2);
  border-right: 2px solid rgba(36, 73, 123, 0.2);
}

.corner--bottom {
  bottom: 40px;
  left: 40px;
  border-bottom: 2px solid rgba(182, 200, 216, 0.2);
  border-left: 2px solid rgba(182, 200, 216, 0.2);
}

.situations__inner {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
}

.section-head p {
  width: 672px;
  max-width: 100%;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 32.5px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 80px;
}

.situation-card {
  position: relative;
  display: block;
  border-radius: 12px;
  color: var(--color-text);
  text-decoration: none;
  outline: none;
}

.situation-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(36, 73, 123, 0), rgba(182, 200, 216, 0), rgba(36, 73, 123, 0));
  filter: blur(4px);
  opacity: 0;
  transition: opacity 700ms ease, background 700ms ease;
}

.situation-card:hover::before,
.situation-card:focus-visible::before {
  background: linear-gradient(135deg, rgba(36, 73, 123, 0.2), rgba(182, 200, 216, 0.1), rgba(36, 73, 123, 0.2));
  opacity: 1;
}

.situation-card__inner {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 112px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: border-color 500ms ease, box-shadow 500ms ease;
}

.situation-card:hover .situation-card__inner,
.situation-card:focus-visible .situation-card__inner {
  border-color: var(--color-blue-soft);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.situation-card__top-line {
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-border), #d4d4d4, var(--color-border));
  transition: background 700ms ease;
}

.situation-card:hover .situation-card__top-line,
.situation-card:focus-visible .situation-card__top-line {
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-soft), var(--color-blue));
}

.situation-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.situation-card__icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.situation-card__icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5f5f5, var(--color-border));
  transition: background 500ms ease;
}

.situation-card:hover .situation-card__icon-wrap::before,
.situation-card:focus-visible .situation-card__icon-wrap::before {
  background: linear-gradient(135deg, rgba(36, 73, 123, 0.1), rgba(26, 53, 87, 0.05));
}

.situation-card__icon-box {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d4d4d4;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  color: #737373;
  transition: transform 500ms ease, background-color 500ms ease, border-color 500ms ease, color 500ms ease;
}

.situation-card:hover .situation-card__icon-box,
.situation-card:focus-visible .situation-card__icon-box {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #ffffff;
  transform: scale(1.1) rotate(-3deg);
}

.situation-card__icon {
  display: block;
  width: 24px;
  height: 24px;
}

.situation-card__text {
  flex: 1 1 auto;
  min-width: 0;
}

.situation-card__title {
  display: block;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  transition: color 300ms ease;
}

.situation-card:hover .situation-card__title,
.situation-card:focus-visible .situation-card__title {
  color: var(--color-blue);
}

.situation-card__corner-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-top-left-radius: 999px;
  background: linear-gradient(315deg, rgba(245, 245, 245, 0.5), transparent);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.06);
  transition: background 500ms ease;
}

.situation-card:hover .situation-card__corner-bg,
.situation-card:focus-visible .situation-card__corner-bg {
  background: linear-gradient(315deg, rgba(182, 200, 216, 0.2), transparent);
}

.situation-card__corner-lines {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
}

.situation-card__corner-lines::before,
.situation-card__corner-lines::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-blue-soft);
  opacity: 0;
  transition: opacity 500ms ease;
}

.situation-card__corner-lines::before {
  width: 24px;
  height: 1px;
}

.situation-card__corner-lines::after {
  width: 1px;
  height: 24px;
}

.situation-card:hover .situation-card__corner-lines::before,
.situation-card:hover .situation-card__corner-lines::after,
.situation-card:focus-visible .situation-card__corner-lines::before,
.situation-card:focus-visible .situation-card__corner-lines::after {
  opacity: 1;
}

.who-protect {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #24497b;
  color: #ffffff;
}

.who-protect__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #24497b;
}

.who-protect__texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.who-protect__glass {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  pointer-events: none;
}

.who-protect__glow {
  position: absolute;
  z-index: 1;
  width: 256px;
  height: 256px;
  border-radius: 999px;
  filter: blur(64px);
  pointer-events: none;
}

.who-protect__glow--top {
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.05);
}

.who-protect__glow--bottom {
  bottom: 40px;
  left: 40px;
  background: rgba(182, 200, 216, 0.1);
}

.who-protect__container {
  position: relative;
  z-index: 2;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.who-protect__intro {
  max-width: 768px;
  margin: 0 auto 64px;
  text-align: center;
}

.who-protect__heading-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.who-protect__line {
  display: block;
  width: 48px;
  height: 1px;
  background: #b6c8d8;
  opacity: 0.8;
}

.who-protect__title {
  margin: 24px 0;
  color: #ffffff;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.who-protect__lead {
  max-width: 768px;
  margin: 24px auto 0;
  color: #b6c8d8;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.who-protect__card-wrap {
  width: min(100%, 896px);
  margin: 0 auto;
}

.who-protect__card {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 38px 64px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(15, 26, 46, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.who-protect__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.who-protect__item {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 15px 0;
  transition: border-color 300ms ease-out;
}

.who-protect__item + .who-protect__item {
  border-top: 1px solid rgba(182, 200, 216, 0.16);
}

.who-protect__item-content {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  transform: translateX(0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.who-protect__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #b6c8d8;
  box-shadow: 0 8px 16px rgba(15, 26, 46, 0.25);
  transform: scale(1);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease,
    box-shadow 260ms ease;
  will-change: transform;
}

.who-protect__text {
  display: block;
  margin: 0;
  color: #ffffff;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  transition: color 260ms ease;
}

.who-protect__item:hover .who-protect__item-content,
.who-protect__item:focus-within .who-protect__item-content {
  transform: translateX(10px);
}

.who-protect__item:hover .who-protect__dot,
.who-protect__item:focus-within .who-protect__dot {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
  transform: scale(1.45);
}

.who-protect__item:hover .who-protect__text,
.who-protect__item:focus-within .who-protect__text {
  color: #b6c8d8;
  font-weight: 400;
}

.who-protect [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.who-protect.is-visible [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.who-protect__card[data-reveal] {
  transition-delay: 120ms;
}

@media (min-width: 1024px) {
  .who-protect__container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.split-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: var(--color-blue);
  text-align: center;
}

.split-title h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
}

.split-title--light {
  color: var(--color-blue-soft);
}

.split-title--light h2 {
  color: #ffffff;
}

.section-text {
  width: 768px;
  max-width: 100%;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 29.25px;
  text-align: center;
}

.section-text--light {
  color: var(--color-blue-soft);
}

.practice-directions {
  padding: 80px 0;
  background: #fafafa;
}

.practice-directions__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.practice-directions__header {
  margin-bottom: 64px;
  text-align: center;
}

.practice-directions__title-wrap {
  display: inline-block;
}

.practice-directions__line {
  display: block;
  width: 48px;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  background: #24497b;
}

.practice-directions__line--top {
  margin-bottom: 24px;
}

.practice-directions__line--bottom {
  margin-top: 24px;
}

.practice-directions__title {
  margin: 0;
  color: #171717;
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

.practice-directions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.practice-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 244px;
  overflow: hidden;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.practice-card:hover,
.practice-card:focus-visible {
  border-color: #24497b;
}

.practice-card:focus-visible {
  outline: 3px solid rgba(36, 73, 123, 0.35);
  outline-offset: 3px;
}

.practice-card__corner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: linear-gradient(225deg, #b6c8d8 0%, rgba(182, 200, 216, 0) 100%);
  opacity: 0.3;
  pointer-events: none;
}

.practice-card__number {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f5f5f5;
  color: #737373;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  transition: background-color 300ms ease, color 300ms ease;
}

.practice-card:hover .practice-card__number,
.practice-card:focus-visible .practice-card__number {
  background: #24497b;
  color: #ffffff;
}

.practice-card__inner {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.practice-card__icon-box {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #edf2f7;
  color: #24497b;
  transition: background-color 300ms ease, color 300ms ease;
}

.practice-card:hover .practice-card__icon-box,
.practice-card:focus-visible .practice-card__icon-box {
  background: #24497b;
  color: #ffffff;
}

.practice-card__icon {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 300ms ease;
}

.practice-card__title {
  min-height: 64px;
  margin: 0 0 12px;
  color: #171717;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  transition: color 300ms ease;
}

.practice-card:hover .practice-card__title,
.practice-card:focus-visible .practice-card__title {
  color: #24497b;
}

.practice-card__description {
  margin: 0;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.practice-card__bottom-line {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 0;
  height: 4px;
  background: #24497b;
  transition: width 500ms ease-out;
}

.practice-card:hover .practice-card__bottom-line,
.practice-card:focus-visible .practice-card__bottom-line {
  width: 100%;
}

@media (min-width: 768px) {
  .practice-directions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .practice-directions__container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .practice-directions__title {
    font-size: 36px;
    line-height: 40px;
  }

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

.trust {
  min-height: 734.75px;
  padding: 80px 0;
  background: #ffffff;
}

.trust h2 {
  margin: 0;
  color: var(--color-blue);
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}

.trust__content {
  width: 896px;
  max-width: 100%;
  margin: 48px auto 0;
}

.trust__content h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.trust-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 24px;
  color: var(--color-muted-dark);
  font-size: 18px;
  line-height: 29.25px;
}

.trust-list li + li {
  margin-top: 16px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-blue);
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.work-trust-card {
  position: relative;
  min-height: 130px;
  padding: 24px;
  border: 1px solid rgba(182, 200, 216, 0.4);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(36, 73, 123, 0.05), rgba(255, 255, 255, 0.8));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 300ms ease;
}

.work-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(182, 200, 216, 0.1), transparent);
  pointer-events: none;
}

.work-trust-card:hover {
  border-color: rgba(182, 200, 216, 0.65);
  background: linear-gradient(135deg, rgba(36, 73, 123, 0.1), rgba(255, 255, 255, 0.8));
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

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

.trust-facts p,
.trust-facts strong {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.trust-facts strong {
  color: var(--color-blue);
}

.analytics-section {
  background: #fafafa;
  padding: 80px 0;
}

.analytics-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.analytics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.analytics-title {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #171717;
}

.analytics-all-link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #24497b;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 220ms ease;
}

.analytics-all-link:hover,
.analytics-all-link:focus-visible {
  color: #24497b;
}

.analytics-arrow {
  display: inline-block;
  color: currentColor;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
  transform: translateY(1px);
}

.analytics-all-link:hover .analytics-arrow,
.analytics-all-link:focus-visible .analytics-arrow {
  transform: translate(2px, 1px);
}

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

.analytics-card {
  position: relative;
  display: block;
  min-height: 188px;
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.analytics-card:hover,
.analytics-card:focus-visible {
  border-color: #24497b;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.analytics-card:focus-visible {
  outline: 3px solid rgba(36, 73, 123, 0.24);
  outline-offset: 3px;
}

.analytics-card__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #171717;
  transition: color 220ms ease;
}

.analytics-card:hover .analytics-card__title,
.analytics-card:focus-visible .analytics-card__title {
  color: #24497b;
}

.analytics-card__text {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #525252;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.analytics-card__text p {
  display: inline;
  margin: 0;
}

.analytics-card__readmore {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #24497b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  text-underline-offset: 4px;
}

.analytics-card:hover .analytics-card__readmore,
.analytics-card:focus-visible .analytics-card__readmore {
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

.analytics-card:hover .analytics-card__readmore .analytics-arrow,
.analytics-card:focus-visible .analytics-card__readmore .analytics-arrow {
  transform: translateY(1px);
}

@media (max-width: 1023px) {
  .analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .analytics-section {
    padding: 56px 0;
  }

  .analytics-container {
    padding: 0 24px;
  }

  .analytics-header {
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.consult {
  min-height: 379px;
  padding: 80px 0;
}

.consult__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.consult h2 {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
}

.consult p {
  width: 768px;
  max-width: 100%;
  margin: 24px 0 0;
  color: var(--color-blue-soft);
  font-size: 20px;
  line-height: 32.5px;
}

.consult__actions {
  margin-top: 32px;
}

.site-footer,
.footer {
  background: #171717;
  color: #ffffff;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer__brand {
  text-align: left;
}

.footer__logo {
  display: block;
  width: auto;
  height: 20px;
  margin: 0 0 24px;
  color: #ffffff;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  margin: 0;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 22px;
}

.footer__brand-tagline {
  display: block;
  white-space: nowrap;
}

.footer__nav,
.footer__contacts {
  font-style: normal;
}

.footer__title {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer__nav-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.footer__nav-list,
.footer__contacts-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__contacts-list {
  gap: 12px;
}

.footer__nav-list a,
.footer__contact-link,
.footer__contact-item {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer__contact-link,
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__nav-list a:hover,
.footer__contact-link:hover,
.footer__contact-link:focus-visible {
  color: #ffffff;
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  color: currentColor;
  stroke-width: 2;
}

.footer__bottom {
  position: relative;
  margin-top: 48px;
  border-top: 1px solid #262626;
  padding-top: 32px;
  text-align: center;
}

.edinstvo {
  position: absolute;
  left: 0;
  top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a3a3a3;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
}

.edinstvo img {
  display: block;
  width: 118px;
  height: auto;
}

.footer__copyright {
  margin: 0;
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 1023px) {
  .edinstvo {
    position: static;
    justify-content: center;
    margin-top: 16px;
  }

  .footer__bottom {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer__container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
  }

  .footer__nav {
    grid-column: span 2;
  }
}

.search-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  padding: 120px 24px 24px;
  background: rgba(23, 23, 23, 0.45);
  backdrop-filter: blur(8px);
}

.search-dialog[hidden] {
  display: none;
}

.search-dialog__panel {
  position: relative;
  width: min(560px, 100%);
  border-radius: 10px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.search-dialog__panel label {
  display: block;
  margin-bottom: 12px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 500;
}

.search-dialog__panel input {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--color-text);
}

.search-dialog__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (max-width: 1280px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav__link {
    font-size: 14px;
  }

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

}

@media (max-width: 1080px) {
  .top-bar {
    display: block;
  }

  .nav-container {
    height: 72px;
  }

  .site-nav {
    position: fixed;
    inset: 104px 0 auto 0;
    z-index: 60;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 104px);
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px 0 0;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transform: translateY(calc(-100% - 120px));
    transition: transform 240ms ease;
    -webkit-overflow-scrolling: touch;
  }

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

  .site-nav__link {
    min-height: 42px;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
  }

  .site-nav__link::after {
    left: 24px;
    right: auto;
    width: 80px;
  }

  .mobile-menu-contacts {
    display: grid;
    gap: 12px;
    border-top: 1px solid #f5f5f5;
    padding: 16px 24px 24px;
  }

  .mobile-menu-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: color 180ms ease;
  }

  .mobile-menu-contact:hover,
  .mobile-menu-contact:focus-visible {
    color: var(--color-blue);
  }

  .search-button {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .hero__inner {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 60px;
  }

  .situations,
  .audience {
    height: auto;
    min-height: 0;
  }

  .situations {
    padding-bottom: 96px;
  }

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

  .trust-facts {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 1023px) {
  .situation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .who-protect__card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand {
    width: 150px;
  }

  .hero__inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-kicker {
    min-height: 56px;
  }

  .section-kicker span {
    font-size: 12px;
    letter-spacing: 2.3px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 48px;
  }

  .hero__lead {
    font-size: 21px;
    line-height: 30px;
  }

  .hero__text,
  .section-text,
  .trust-list li {
    font-size: 16px;
    line-height: 26px;
  }

  .hero__actions,
  .consult__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__badges {
    flex-wrap: wrap;
  }

  .situations {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-head h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .section-head p,
  .consult p {
    font-size: 18px;
    line-height: 29px;
  }

  .situation-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .situation-card__inner {
    min-height: 104px;
  }

  .situation-card__title {
    font-size: 16px;
  }

  .audience__inner,
  .trust,
  .consult {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .split-title h2,
  .trust h2,
  .consult h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .audience-list {
    padding: 32px;
  }

  .audience-list li {
    font-size: 16px;
    line-height: 26px;
  }

  .practice-directions {
    padding: 64px 0;
  }

  .practice-directions__header {
    margin-bottom: 40px;
  }

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

  .trust__content h3 {
    font-size: 21px;
    line-height: 30px;
  }

}

@media (max-width: 640px) {
  .who-protect {
    padding: 64px 0;
  }

  .who-protect__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .who-protect__intro {
    margin-bottom: 40px;
  }

  .who-protect__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .who-protect__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .who-protect__card {
    border-radius: 14px;
    padding: 28px 24px;
  }

  .who-protect__item {
    margin: 0;
    padding: 13px 0;
  }

  .who-protect__text {
    font-size: 15px;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand {
    width: 132px;
  }

  .nav-container {
    gap: 14px;
  }

  .search-button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .button {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 15px;
  }

  .section-head h2,
  .split-title h2,
  .trust h2,
  .consult h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .situation-card__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .situation-card__icon {
    width: 24px;
    height: 24px;
  }

  .audience-list {
    padding: 24px;
  }

}

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

  .situation-card,
  .situation-card *,
  .situations-bg-layer,
  .who-protect [data-reveal],
  .who-protect__item,
  .who-protect__item-content,
  .who-protect__dot,
  .who-protect__text {
    animation: none !important;
    transform: none !important;
  }

  .who-protect [data-reveal] {
    opacity: 1 !important;
  }
}

/* Practices page */
.practices-page {
  background: #fafafa;
  padding: 80px 0;
}

.practices-page .practices-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.practices-page .practices-hero {
  max-width: 768px;
}

.practices-page .practices-hero__title {
  margin: 0;
  color: #24497b;
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
}

.practices-page .practices-hero__lead {
  margin: 24px 0 0;
  color: #525252;
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
}

.practices-page .practices-grid {
  display: grid;
  gap: 48px;
  margin-top: 64px;
}

.practices-page .practices-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid #e1e5ea;
  border-radius: 8px;
  padding: 32px;
  background: #ffffff;
  box-shadow: none;
  transform: none;
  transition: border-color 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}

.practices-page .practices-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(36, 73, 123, 0.05), rgba(42, 100, 120, 0.03), rgba(58, 95, 142, 0.04));
  opacity: 0;
  transition: opacity 500ms ease;
}

.practices-page .practices-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 4px;
  pointer-events: none;
  background: var(--color-blue);
  opacity: 0;
  transition: opacity 300ms ease;
}

.practices-page .practices-card:hover,
.practices-page .practices-card:focus-within {
  background: #ffffff;
  border-color: var(--color-blue);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  transform: none;
}

.practices-page .practices-card:hover::before,
.practices-page .practices-card:focus-within::before,
.practices-page .practices-card:hover::after,
.practices-page .practices-card:focus-within::after {
  opacity: 1;
}

.practices-page .practices-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin-right: 0;
  padding-right: 0;
}

.practices-page .practices-card__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eef2f5;
  color: #24497b;
  transition: background 300ms ease;
}

.practices-page .practices-card:hover .practices-card__icon,
.practices-page .practices-card:focus-within .practices-card__icon {
  background: linear-gradient(135deg, rgba(36, 73, 123, 0.1), rgba(58, 95, 142, 0.1));
}

.practices-page .practices-card__icon svg,
.practices-page .practices-card__watermark svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.practices-page .practices-card__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
}

.practices-page .practices-card__body {
  position: relative;
  z-index: 3;
  min-width: 0;
  width: auto;
  max-width: none;
  flex: 1 1 auto;
  margin-right: 0;
  padding-right: 0;
}

.practices-page .practices-card__title {
  margin: 0;
  color: #24497b;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}

.practices-page .practices-card__text {
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
  padding-right: 0;
  color: #525252;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.practices-page .practices-card__points {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.practices-page .practices-card__points li {
  position: relative;
  padding-left: 18px;
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.practices-page .practices-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #24497b;
}

.practices-page .practices-card__watermark {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 1;
  width: 128px;
  height: 128px;
  color: #24497b;
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(12deg);
}

.practices-page .practices-card__watermark svg {
  width: 128px;
  height: 128px;
  stroke-width: 1.6;
}

.practices-page .practices-card__glow {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(36, 73, 123, 0.3), rgba(42, 100, 120, 0.2));
  filter: blur(32px);
  opacity: 0.06;
  pointer-events: none;
}

.practices-page .practices-card__circle {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
}

.practices-page .practices-card__circle--large {
  top: 33%;
  right: 16px;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(36, 73, 123, 0.012);
}

.practices-page .practices-card__circle--small {
  right: 80px;
  bottom: 25%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(42, 100, 120, 0.012);
}

.practices-page .practices-cta {
  position: relative;
  min-height: 266px;
  margin-top: 64px;
  overflow: hidden;
  border-radius: 10px;
  padding: 48px;
  background: #24497b;
  color: #ffffff;
  text-align: center;
}

.practices-page .practices-cta__title {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

.practices-page .practices-cta__text {
  margin: 16px 0 0;
  color: #b6c8d8;
  font-size: 20px;
  line-height: 28px;
}

.practices-page .practices-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.practices-page .practices-cta__button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.practices-page .practices-cta__button:hover {
  transform: translateY(-1px);
}

.practices-page .practices-cta__button--light {
  background: #ffffff;
  color: #24497b;
}

.practices-page .practices-cta__button--dark {
  border: 1px solid #1a3557;
  background: #162a45;
  color: #ffffff;
}

@media (max-width: 767px) {
  .practices-page {
    padding: 48px 0;
  }

  .practices-page .practices-page__container {
    padding: 0 24px;
  }

  .practices-page .practices-hero__title {
    font-size: 36px;
    line-height: 42px;
  }

  .practices-page .practices-hero__lead {
    font-size: 18px;
    line-height: 28px;
  }

  .practices-page .practices-grid {
    gap: 24px;
    margin-top: 40px;
  }

  .practices-page .practices-card {
    min-height: 0;
    padding: 24px;
  }

  .practices-page .practices-card__content {
    display: grid;
    gap: 18px;
    padding-right: 0;
  }

  .practices-page .practices-card__icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .practices-page .practices-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .practices-page .practices-card__title {
    font-size: 22px;
    line-height: 30px;
  }

  .practices-page .practices-card__text {
    font-size: 18px;
    line-height: 1.55;
  }

  .practices-page .practices-card__points li {
    white-space: normal;
  }

  .practices-page .practices-card__watermark,
  .practices-page .practices-card__glow,
  .practices-page .practices-card__circle {
    display: none;
  }

  .practices-page .practices-cta {
    min-height: 0;
    margin-top: 40px;
    padding: 32px 24px;
  }

  .practices-page .practices-cta__title {
    font-size: 26px;
    line-height: 34px;
  }

  .practices-page .practices-cta__text {
    font-size: 18px;
    line-height: 28px;
  }

  .practices-page .practices-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Team page */
.team-page {
  background: #ffffff;
  color: #171717;
}

.team-page .team-page__main {
  padding: 80px 0;
}

.team-page .team-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.team-page .team-hero {
  max-width: 896px;
  margin-bottom: 64px;
}

.team-page .team-hero__title {
  margin: 0;
  color: #24497b;
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
}

.team-page .team-hero__text {
  margin: 24px 0 0;
  color: #525252;
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
}

.team-page .team-section {
  margin-top: 64px;
}

.team-page .team-hero + .team-section {
  margin-top: 0;
}

.team-page .team-section__title {
  margin: 0 0 32px;
  color: #24497b;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

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

.team-page .team-value-card {
  position: relative;
  min-height: 252px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #24497b 0%, #1b3a5f 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: transform 500ms ease, box-shadow 500ms ease;
}

.team-page .team-value-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.team-page .team-value-card__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 300ms ease, background-color 300ms ease;
}

.team-page .team-value-card:hover .team-value-card__icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(12deg);
}

.team-page .team-value-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.team-page .team-value-card__body {
  position: relative;
  z-index: 1;
  padding: 80px 24px 24px;
}

.team-page .team-value-card__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.team-page .team-value-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 26px;
}

.team-page .team-value-card__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #c5e0e3 0%, #ffffff 50%, #c5e0e3 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 500ms ease;
}

.team-page .team-value-card:hover .team-value-card__line {
  transform: scaleX(1);
}

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

.team-page .team-member-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.team-page .team-member-card:hover,
.team-page .team-member-card:focus-visible {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.team-page .team-member-card:focus-visible {
  border-color: #24497b;
}

.team-page .team-member-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f5f5f5;
}

.team-page .team-member-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease;
}

.team-page .team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 24px;
  color: #525252;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.team-page .team-member-card:hover .team-member-card__photo img,
.team-page .team-member-card:focus-visible .team-member-card__photo img {
  transform: scale(1.05);
}

.team-page .team-member-card__body {
  padding: 24px;
}

.team-page .team-member-card__name {
  margin: 0 0 8px;
  color: #24497b;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.team-page .team-member-card__position {
  margin: 0;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.team-page .team-member-card__position p {
  margin: 0;
}

.team-page .team-member-card__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #24497b 0%, #c5e0e3 50%, #24497b 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease;
}

.team-page .team-member-card:hover .team-member-card__line,
.team-page .team-member-card:focus-visible .team-member-card__line {
  transform: scaleX(1);
}

.team-page .team-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.team-page .team-modal.is-open {
  display: flex;
}

.team-page .team-modal__dialog {
  position: relative;
  width: min(896px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.team-page .team-modal__bar {
  height: 8px;
  width: 100%;
  flex: 0 0 auto;
  background: linear-gradient(90deg, #24497b 0%, #c5e0e3 50%, #24497b 100%);
}

.team-page .team-modal__bar--top {
  border-radius: 10px 10px 0 0;
}

.team-page .team-modal__bar--bottom {
  border-radius: 0 0 10px 10px;
}

.team-page .team-modal__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
  padding: 32px;
}

.team-page .team-modal__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f5f5;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.team-page .team-modal__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-page .team-modal__photo img[hidden],
.team-page .team-modal__photo .team-photo-placeholder[hidden] {
  display: none;
}

.team-page .team-modal__content {
  align-self: center;
  border-radius: 10px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

.team-page .team-modal__name {
  margin: 0 0 8px;
  color: #24497b;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

.team-page .team-modal__position {
  margin: 0 0 24px;
  border-bottom: 2px solid #c5e0e3;
  padding-bottom: 24px;
  color: #525252;
  font-size: 18px;
  line-height: 28px;
}

.team-page .team-modal__position p {
  margin: 0;
}

.team-page .team-modal__bio p {
  margin: 0 0 16px;
  color: #404040;
  font-size: 16px;
  line-height: 26px;
}

.team-page .team-modal__bio p:last-child {
  margin-bottom: 0;
}

.team-page .team-modal__bio h2,
.team-page .team-modal__bio h3,
.team-page .team-modal__bio h4 {
  margin: 20px 0 12px;
  color: #24497b;
  font-weight: 500;
  line-height: 1.35;
}

.team-page .team-modal__bio ul,
.team-page .team-modal__bio ol {
  margin: 0 0 16px;
  padding-left: 24px;
  color: #404040;
  font-size: 16px;
  line-height: 26px;
}

.team-page .team-modal__bio .lead {
  font-size: 18px;
}

.team-page .team-modal__bio .lead p {
  font-size: inherit;
}

.team-page .team-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #525252;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: color 200ms ease, transform 200ms ease;
}

.team-page .team-modal__close:hover,
.team-page .team-modal__close:focus-visible {
  color: #171717;
  transform: scale(1.1);
}

.team-page .team-modal__nav {
  position: absolute;
  top: 60%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 73, 123, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #24497b;
  cursor: pointer;
  box-shadow: none;
  opacity: 0.85;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.team-page .team-modal__nav:hover,
.team-page .team-modal__nav:focus-visible {
  border-color: #24497b;
  background: #24497b;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(36, 73, 123, 0.24);
  opacity: 1;
}

.team-page .team-modal__nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.team-page .team-modal__nav--prev {
  left: 24px;
  transform: translateY(-50%);
}

.team-page .team-modal__nav--next {
  right: 24px;
  transform: translateY(-50%);
}

.team-page .team-modal__nav--prev:hover,
.team-page .team-modal__nav--prev:focus-visible,
.team-page .team-modal__nav--next:hover,
.team-page .team-modal__nav--next:focus-visible {
  transform: translateY(-50%) scale(1.08);
}

.team-page .team-expertise__box {
  border-radius: 10px;
  padding: 32px;
  background: #fafafa;
}

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

.team-page .team-expertise__group ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-page .team-expertise__title {
  margin: 0 0 16px;
  color: #24497b;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.team-page .team-expertise li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #404040;
  font-size: 16px;
  line-height: 24px;
}

.team-page .team-expertise li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  margin-top: 9px;
  border-radius: 50%;
  background: #24497b;
}

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

.team-page .team-approach-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(36, 73, 123, 0.2);
  border-radius: 10px;
  padding: 32px;
  background: linear-gradient(135deg, #ebf3f9 0%, #ffffff 100%);
  box-shadow: none;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    background 300ms ease;
}

.team-page .team-approach-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #24497b 0%, #c5e0e3 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
  pointer-events: none;
}

.team-page .team-approach-card:hover,
.team-page .team-approach-card:focus-within {
  border-color: rgba(36, 73, 123, 0.4);
  background: linear-gradient(135deg, #e7f1f8 0%, #ffffff 100%);
  box-shadow: 0 10px 22px rgba(36, 73, 123, 0.12);
  transform: translateY(-2px);
}

.team-page .team-approach-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.team-page .team-approach-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #404040;
  font-size: 16px;
  line-height: 26px;
}

.team-page .team-cta {
  margin-top: 64px;
  border-radius: 10px;
  padding: 48px;
  background: #24497b;
  color: #ffffff;
  text-align: center;
}

.team-page .team-cta__title {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
}

.team-page .team-cta__text {
  margin: 16px 0 0;
  color: #b6c8d8;
  font-size: 20px;
  line-height: 28px;
}

.team-page .team-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.team-page .team-cta__btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.team-page .team-cta__btn:hover,
.team-page .team-cta__btn:focus-visible {
  transform: translateY(-1px);
}

.team-page .team-cta__btn--light {
  background: #ffffff;
  color: #24497b;
}

.team-page .team-cta__btn--dark {
  border: 1px solid #1a3557;
  background: #162a45;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .team-page .team-values__grid,
  .team-page .team-members__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .team-page .team-page__main {
    padding: 56px 0;
  }

  .team-page .team-page__container {
    padding: 0 20px;
  }

  .team-page .team-hero {
    margin-bottom: 48px;
  }

  .team-page .team-hero__title {
    font-size: 36px;
    line-height: 42px;
  }

  .team-page .team-hero__text {
    font-size: 17px;
    line-height: 28px;
  }

  .team-page .team-section {
    margin-top: 48px;
  }

  .team-page .team-values__grid,
  .team-page .team-members__grid,
  .team-page .team-expertise__grid,
  .team-page .team-approach__grid {
    grid-template-columns: 1fr;
  }

  .team-page .team-value-card {
    min-height: 220px;
  }

  .team-page .team-modal__inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .team-page .team-modal__content {
    padding: 0;
    background: transparent;
  }

  .team-page .team-modal__name {
    padding-right: 32px;
    font-size: 26px;
    line-height: 34px;
  }

  .team-page .team-modal__nav {
    display: none;
  }

  .team-page .team-expertise__box,
  .team-page .team-approach-card,
  .team-page .team-cta {
    padding: 24px;
  }

  .team-page .team-cta__title {
    font-size: 26px;
    line-height: 34px;
  }

  .team-page .team-cta__text {
    font-size: 18px;
    line-height: 28px;
  }

  .team-page .team-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-page *,
  .team-page *::before,
  .team-page *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Analytics page */
.analytics-page {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #171717;
}

.analytics-page .analytics-page__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.analytics-page .analytics-page__decor {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 1;
  pointer-events: none;
}

.analytics-page .analytics-page__decor--left-top {
  top: 160px;
  left: 0;
  width: 128px;
  height: 128px;
  background: linear-gradient(135deg, rgba(36, 73, 123, 0.05), transparent);
}

.analytics-page .analytics-page__decor--right {
  top: 384px;
  right: 0;
  width: 160px;
  height: 160px;
  background: linear-gradient(225deg, rgba(27, 58, 95, 0.05), transparent);
}

.analytics-page .analytics-page__decor--left-bottom {
  bottom: 520px;
  left: 0;
  width: 144px;
  height: 144px;
  background: linear-gradient(45deg, rgba(197, 224, 227, 0.05), transparent);
}

.analytics-page .analytics-hero {
  padding-top: 80px;
  margin-bottom: 64px;
}

.analytics-page .analytics-hero__inner {
  max-width: 768px;
}

.analytics-page .analytics-hero h1 {
  margin: 0 0 24px;
  color: #24497b;
  font-size: clamp(40px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.analytics-page .analytics-hero p {
  margin: 0;
  color: #525252;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.analytics-page .analytics-section {
  padding: 0 0 80px;
  background: transparent;
}

.analytics-page .analytics-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.analytics-page .analytics-article {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(36, 73, 123, 0.25);
  border-radius: 8px;
  transition: box-shadow 280ms ease, border-color 280ms ease;
}

.analytics-page .analytics-article--scheme-1 {
  border-color: rgba(91, 127, 168, 0.4);
  background: linear-gradient(135deg, #e3edf7 0%, #ffffff 100%);
}

.analytics-page .analytics-article--scheme-2 {
  border-color: rgba(36, 73, 123, 0.4);
  background: linear-gradient(135deg, #d6e4f0 0%, #ffffff 100%);
}

.analytics-page .analytics-article--scheme-3 {
  border-color: rgba(27, 58, 95, 0.4);
  background: linear-gradient(135deg, #cbd9e8 0%, #ffffff 100%);
}

.analytics-page .analytics-article:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.analytics-page .analytics-article__stripe {
  width: 100%;
  height: 4px;
}

.analytics-page .analytics-article--scheme-1 .analytics-article__stripe {
  background: linear-gradient(90deg, #5b7fa8, #7a9bc4);
}

.analytics-page .analytics-article--scheme-2 .analytics-article__stripe {
  background: linear-gradient(90deg, #24497b, #3a5f8e);
}

.analytics-page .analytics-article--scheme-3 .analytics-article__stripe {
  background: linear-gradient(90deg, #1b3a5f, #2b4a6f);
}

.analytics-page .analytics-article__clip {
  position: absolute;
  top: -4px;
  right: 48px;
  z-index: 3;
  width: 32px;
  height: 40px;
  border-radius: 2px;
  opacity: 0.6;
  pointer-events: none;
}

.analytics-page .analytics-article--scheme-1 .analytics-article__clip {
  background: #5b7fa8;
}

.analytics-page .analytics-article--scheme-2 .analytics-article__clip {
  background: #24497b;
}

.analytics-page .analytics-article--scheme-3 .analytics-article__clip {
  background: #1b3a5f;
}

.analytics-page .analytics-article__clip span {
  position: absolute;
  right: 8px;
  left: 8px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.analytics-page .analytics-article__clip span:first-child {
  top: 12px;
}

.analytics-page .analytics-article__clip span:last-child {
  bottom: 12px;
}

.analytics-page .analytics-article__body {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.analytics-page .analytics-article__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.analytics-page .analytics-article__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 28px;
  margin-top: 4px;
  color: #24497b;
}

.analytics-page .analytics-article__icon svg {
  width: 24px;
  height: 24px;
}

.analytics-page .analytics-article__title {
  margin: 0;
  color: #24497b;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.analytics-page .analytics-article__description {
  margin: 0 0 24px;
  color: #404040;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.analytics-page .analytics-article__description p {
  margin: 0;
}

.analytics-page .analytics-article__description p + p {
  margin-top: 8px;
}

.analytics-page .analytics-article__description ul,
.analytics-page .analytics-article__description ol {
  margin: 0;
  padding-left: 24px;
}

.analytics-page .analytics-article__content {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.analytics-page .analytics-article__content p {
  margin: 0;
  color: #404040;
  font-size: 16px;
  line-height: 1.625;
}

.analytics-page .analytics-article__content p + p {
  margin-top: 8px;
}

.analytics-page .analytics-article__content p.is-spacer {
  height: 16px;
  margin: 0;
}

.analytics-page .analytics-article__content ul,
.analytics-page .analytics-article__content ol {
  margin: 0;
  padding-left: 24px;
  color: #404040;
  font-size: 16px;
  line-height: 1.625;
}

.analytics-page .analytics-article__content li + li {
  margin-top: 8px;
}

.analytics-page .analytics-detail__content {
  color: #404040;
  font-size: 18px;
  line-height: 1.7;
}

.analytics-page .analytics-detail__content h2,
.analytics-page .analytics-detail__content h3,
.analytics-page .analytics-detail__content h4 {
  margin: 28px 0 16px;
  color: #24497b;
  font-weight: 500;
  line-height: 1.35;
}

.analytics-page .analytics-detail__content p {
  margin: 0 0 16px;
}

.analytics-page .analytics-detail__content ul,
.analytics-page .analytics-detail__content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.analytics-page .analytics-detail__content blockquote {
  margin: 20px 0;
  padding-left: 20px;
  border-left: 3px solid #7a9bc4;
}

.cms-rich-text .lead {
  font-size: 1.125em;
}

.cms-rich-text a {
  color: #24497b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}

.cms-rich-text a:hover,
.cms-rich-text a:focus-visible {
  color: #1b3a5f;
}

.analytics-page .analytics-article__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #24497b;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color 250ms ease;
}

.analytics-page .analytics-article__link:hover,
.analytics-page .analytics-article__link:focus-visible {
  color: #1b3a5f;
}

.analytics-page .analytics-article__link svg {
  width: 16px;
  height: 16px;
}

.analytics-page .analytics-telegram {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  padding: 48px;
  border-radius: 8px;
  background: #24497b;
  color: #ffffff;
  text-align: center;
}

.analytics-page .analytics-telegram::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(197, 224, 227, 0.18), transparent 30%);
  pointer-events: none;
}

.analytics-page .analytics-telegram__inner {
  position: relative;
  z-index: 1;
}

.analytics-page .analytics-telegram h2 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.analytics-page .analytics-telegram p {
  max-width: 672px;
  margin: 0 auto 32px;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.4;
}

.analytics-page .analytics-telegram__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  gap: 8px;
  border-radius: 6px;
  background: #ffffff;
  color: #1b3a5f;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 250ms ease;
}

.analytics-page .analytics-telegram__button:hover,
.analytics-page .analytics-telegram__button:focus-visible {
  background: #eff6ff;
}

.analytics-page .analytics-telegram__button svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 1024px) {
  .analytics-page .analytics-page__container {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 767px) {
  .analytics-page .analytics-hero {
    padding-top: 56px;
    margin-bottom: 40px;
  }

  .analytics-page .analytics-hero h1 {
    font-size: 36px;
  }

  .analytics-page .analytics-hero p {
    font-size: 18px;
  }

  .analytics-page .analytics-section {
    padding-bottom: 56px;
  }

  .analytics-page .analytics-list {
    gap: 24px;
  }

  .analytics-page .analytics-article__body {
    padding: 24px;
  }

  .analytics-page .analytics-article__title {
    font-size: 22px;
    line-height: 1.35;
  }

  .analytics-page .analytics-article__description {
    font-size: 16px;
  }

  .analytics-page .analytics-article__content {
    padding: 18px;
  }

  .analytics-page .analytics-article__clip {
    right: 24px;
    opacity: 0.45;
  }

  .analytics-page .analytics-telegram {
    margin-top: 48px;
    padding: 32px 24px;
  }

  .analytics-page .analytics-telegram h2 {
    font-size: 26px;
  }

  .analytics-page .analytics-telegram p {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .analytics-page *,
  .analytics-page *::before,
  .analytics-page *::after {
    animation: none !important;
    transition: none !important;
  }

  .analytics-page .reveal {
    transform: none !important;
  }
}

/* About page */
.about-page {
  padding: 80px 0;
  overflow: hidden;
  background: #ffffff;
  color: #171717;
}

.about-page .about-page__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-page .about-hero {
  margin-bottom: 64px;
}

.about-page .about-hero.reveal {
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.about-page .about-hero.reveal.is-visible {
  transform: translateY(0);
}

.about-page .about-hero__inner {
  width: 100%;
  max-width: 896px;
  margin-right: auto;
  margin-left: 0;
}

.about-page .about-hero__title,
.about-page h1 {
  margin: 0 0 24px;
  color: #24497b;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-page .about-quote {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid #d6e1ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(36, 73, 123, 0.06);
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.about-page .about-quote:hover {
  border-color: rgba(197, 224, 227, 0.65);
  background: rgba(36, 73, 123, 0.05);
}

.about-page .about-quote::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 25px;
  bottom: 25px;
  width: 2px;
  background: #b6c8d8;
  opacity: 1;
  pointer-events: none;
}

.about-page .about-quote__text {
  margin: 0;
  padding-right: 24px;
  color: #24497b;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 39px;
}

.about-page .about-content {
  margin-bottom: 64px;
}

.about-page .about-content__inner {
  width: 100%;
  max-width: 896px;
  margin-right: auto;
  margin-left: 0;
}

.about-page .about-text-block {
  position: relative;
  padding-left: 0;
  margin-bottom: 32px;
}

.about-page .about-text-block:last-child {
  margin-bottom: 0;
}

.about-page .about-text-block::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 999px;
  background: #e6ebf0;
  opacity: 0.55;
}

.about-page .about-text-block::after {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(182, 200, 216, 0.08) 0%,
    rgba(182, 200, 216, 0.95) 45%,
    rgba(182, 200, 216, 0.35) 100%
  );
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 450ms ease;
}

.about-page .about-text-block.is-visible::after {
  transform: scaleY(1);
  opacity: 1;
}

.about-page .about-section__line {
  display: none;
  position: absolute;
  top: 0;
  left: -16px;
  width: 4px;
  height: 0;
  border-radius: 999px;
  opacity: 0;
}

.about-page .about-section__title {
  margin: 0 0 16px;
  color: #24497b;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}

.about-page .about-section p {
  margin: 0 0 16px;
  color: #404040;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.about-page .about-section p:last-child {
  margin-bottom: 0;
}

.about-page .about-achievements {
  margin-bottom: 0;
}

.about-page .about-achievements__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.about-page .about-achievement-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(197, 224, 227, 0.4);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.about-page .about-achievement-card:hover {
  border-color: rgba(197, 224, 227, 0.7);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.about-page .about-achievement-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  border-top: 2px solid rgba(197, 224, 227, 0.3);
  border-right: 2px solid rgba(197, 224, 227, 0.3);
  border-top-right-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.about-page .about-achievement-card:hover::after {
  opacity: 1;
}

.about-page .about-achievement-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.about-page .about-achievement-card__icon {
  display: flex;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #24497b;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.about-page .about-achievement-card:hover .about-achievement-card__icon {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.about-page .about-achievement-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 300ms ease;
}

.about-page .about-achievement-card:hover .about-achievement-card__icon svg {
  transform: rotate(6deg);
}

.about-page .about-achievement-card__content {
  min-width: 0;
}

.about-page .about-achievement-card__title {
  margin: 0 0 8px;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
}

.about-page .about-achievement-card__text {
  margin: 0;
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.about-page .about-offices {
  margin-top: 64px;
}

.about-page .about-offices__panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 8px;
  background: #24497b;
  color: #ffffff;
}

.about-page .about-offices__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.about-page .about-offices__content {
  position: relative;
  z-index: 1;
}

.about-page .about-offices__title {
  margin: 0 0 32px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.about-page .about-offices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.about-page .about-office-card {
  text-align: center;
}

.about-page .about-office-card__icon {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  color: #bfdbfe;
}

.about-page .about-office-card__city {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.about-page .about-office-card__address {
  margin: 0;
  color: #b6c8d8;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

@media (min-width: 1024px) {
  .about-page .about-page__container {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 900px) {
  .about-page .about-achievements__grid,
  .about-page .about-offices__grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-offices__panel {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .about-page {
    padding: 56px 0;
  }

  .about-page .about-hero {
    margin-bottom: 48px;
  }

  .about-page .about-hero__title {
    font-size: 36px;
  }

  .about-page .about-quote {
    padding: 24px;
  }

  .about-page .about-quote::after {
    top: 20px;
    right: 18px;
    bottom: 20px;
  }

  .about-page .about-quote__text {
    padding-right: 18px;
    font-size: 20px;
    line-height: 32px;
  }

  .about-page .about-content {
    margin-bottom: 48px;
  }

  .about-page .about-text-block {
    padding-left: 16px;
  }

  .about-page .about-text-block::before,
  .about-page .about-text-block::after {
    left: 0;
  }

  .about-page .about-section__title {
    font-size: 22px;
    line-height: 30px;
  }

  .about-page .about-section p {
    font-size: 16px;
    line-height: 26px;
  }

  .about-page .about-achievement-card {
    padding: 24px;
  }

  .about-page .about-achievement-card__inner {
    gap: 18px;
  }

  .about-page .about-achievement-card__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .about-page .about-achievement-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .about-page .about-offices {
    margin-top: 48px;
  }

  .about-page .about-offices__title {
    font-size: 30px;
  }
}

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

/* Pro Bono page */
.pro-bono-page {
  background: #ffffff;
  color: #171717;
}

.pro-bono-page .pro-bono-page__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.pro-bono-page .pro-bono-narrow {
  max-width: 896px;
}

.pro-bono-page [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-bono-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pro-bono-page .pro-bono-hero {
  margin-bottom: 64px;
}

.pro-bono-page .pro-bono-hero h1 {
  margin: 0 0 24px;
  color: #24497b;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pro-bono-page .pro-bono-hero p {
  margin: 0;
  color: #525252;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.pro-bono-page .pro-bono-mission {
  margin-bottom: 64px;
}

.pro-bono-page .pro-bono-mission-card {
  position: relative;
  overflow: visible;
  padding: 32px;
  border: 1px solid #1b3a5f;
  border-radius: 8px;
  background: #24497b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.pro-bono-page .pro-bono-mission-card:hover {
  transform: scale(1.01);
  box-shadow: 0 24px 48px rgba(36, 73, 123, 0.22);
}

.pro-bono-page .pro-bono-mission-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.pro-bono-page .pro-bono-mission-glow::before {
  content: "";
  position: absolute;
  right: -96px;
  bottom: -112px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 62%);
}

.pro-bono-page .pro-bono-mission-content {
  position: relative;
  z-index: 1;
}

.pro-bono-page .pro-bono-mission-card h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.pro-bono-page .pro-bono-mission-card p {
  margin: 0;
  color: #b6c8d8;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.pro-bono-page .pro-bono-clip {
  position: absolute;
  top: -8px;
  right: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  transition: transform 300ms ease, background 300ms ease;
}

.pro-bono-page .pro-bono-mission-card:hover .pro-bono-clip {
  transform: translateY(-4px) scale(1.08);
  background: rgba(255, 255, 255, 0.25);
}

.pro-bono-page .pro-bono-clip svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.pro-bono-page .pro-bono-center {
  margin-bottom: 64px;
}

.pro-bono-page .pro-bono-center h2 {
  margin: 0 0 24px;
  color: #24497b;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.pro-bono-page .pro-bono-center > p {
  margin: 0 0 24px;
  color: #404040;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.pro-bono-page .pro-bono-center strong {
  color: #24497b;
  font-weight: 600;
}

.pro-bono-page .pro-bono-work-panel {
  padding: 32px;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  background: #f8fafb;
}

.pro-bono-page .pro-bono-work-panel h3 {
  margin: 0 0 16px;
  color: #24497b;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.pro-bono-page .pro-bono-work-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pro-bono-page .pro-bono-work-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px;
  border-radius: 8px;
  transition: background 250ms ease, transform 250ms ease;
}

.pro-bono-page .pro-bono-work-card:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: translateX(4px);
}

.pro-bono-page .pro-bono-work-icon {
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, #24497b, #1b3a5f);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.pro-bono-page .pro-bono-work-card:hover .pro-bono-work-icon {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 18px rgba(36, 73, 123, 0.22);
}

.pro-bono-page .pro-bono-work-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pro-bono-page .pro-bono-work-card__content {
  min-width: 0;
}

.pro-bono-page .pro-bono-work-card h4 {
  margin: 0 0 8px;
  color: #24497b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.pro-bono-page .pro-bono-work-card p {
  margin: 0;
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.pro-bono-page .pro-bono-impact {
  margin-bottom: 64px;
}

.pro-bono-page .pro-bono-impact h2 {
  margin: 0 0 24px;
  color: #171717;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.pro-bono-page .pro-bono-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pro-bono-page .pro-bono-impact-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fafafa;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.pro-bono-page .pro-bono-impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #24497b, #c5e0e3, transparent);
}

.pro-bono-page .pro-bono-impact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 73, 123, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.pro-bono-page .pro-bono-impact-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.pro-bono-page .pro-bono-impact-dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: #24497b;
  transition: transform 300ms ease, background-color 300ms ease;
}

.pro-bono-page .pro-bono-impact-card:hover .pro-bono-impact-dot {
  transform: scale(1.5);
  background: #c5e0e3;
}

.pro-bono-page .pro-bono-impact-card h3 {
  margin: 0;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.pro-bono-page .pro-bono-impact-card p {
  margin: 0;
  padding-left: 24px;
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.pro-bono-page .pro-bono-quote {
  margin-top: 64px;
}

.pro-bono-page .pro-bono-quote-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 8px;
  background: #24497b;
  color: #ffffff;
}

.pro-bono-page .pro-bono-quote-card::before,
.pro-bono-page .pro-bono-quote-bg {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(197, 224, 227, 0.18), transparent 34%);
  pointer-events: none;
}

.pro-bono-page .pro-bono-quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
}

.pro-bono-page .pro-bono-quote-card p {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
}

.pro-bono-page .pro-bono-quote-card footer {
  color: #b6c8d8;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .pro-bono-page .pro-bono-page__inner {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 767px) {
  .pro-bono-page .pro-bono-page__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .pro-bono-page .pro-bono-hero h1 {
    font-size: 36px;
  }

  .pro-bono-page .pro-bono-hero p,
  .pro-bono-page .pro-bono-center > p,
  .pro-bono-page .pro-bono-mission-card p {
    font-size: 17px;
  }

  .pro-bono-page .pro-bono-mission-card,
  .pro-bono-page .pro-bono-work-panel,
  .pro-bono-page .pro-bono-quote-card {
    padding: 24px;
  }

  .pro-bono-page .pro-bono-clip {
    right: 24px;
  }

  .pro-bono-page .pro-bono-work-card {
    transform: none;
  }

  .pro-bono-page .pro-bono-impact-grid {
    grid-template-columns: 1fr;
  }

  .pro-bono-page .pro-bono-quote-card p {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .pro-bono-page .pro-bono-work-card {
    gap: 14px;
    padding: 10px 0;
  }

  .pro-bono-page .pro-bono-impact-card p {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pro-bono-page *,
  .pro-bono-page *::before,
  .pro-bono-page *::after {
    animation: none !important;
    transition: none !important;
  }

  .pro-bono-page [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Contacts page */
body.modal-open {
  overflow: hidden;
}

.contacts-page {
  background: #ffffff;
  color: #171717;
}

.contacts-page .contacts-page__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.contacts-page [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contacts-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contacts-page .contacts-hero {
  max-width: 768px;
  margin-bottom: 64px;
}

.contacts-page .contacts-hero h1 {
  margin: 0 0 24px;
  color: #24497b;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.contacts-page .contacts-hero p {
  margin: 0;
  color: #525252;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.contacts-page .contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.contacts-page .contacts-info {
  padding: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ebf3f9 0%, #ffffff 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contacts-page .contacts-info h2,
.contacts-page .contacts-offices h2 {
  margin: 0 0 24px;
  color: #24497b;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.contacts-page .contacts-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-page .contacts-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(36, 73, 123, 0.1);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.contacts-page .contacts-info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 73, 123, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contacts-page .contacts-info-card__icon {
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(36, 73, 123, 0.1);
  color: #24497b;
  transition: transform 300ms ease;
}

.contacts-page .contacts-info-card:hover .contacts-info-card__icon {
  transform: scale(1.1);
}

.contacts-page .contacts-info-card__icon svg,
.contacts-page .contacts-form-tab svg,
.contacts-page .contacts-submit__icon,
.contacts-page .contacts-city-tab svg,
.contacts-page .contacts-office-icon svg,
.contacts-page .contacts-privacy-close svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contacts-page .contacts-info-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.contacts-page .contacts-info-card__content {
  min-width: 0;
}

.contacts-page .contacts-info-card h3 {
  margin: 0 0 4px;
  color: #737373;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contacts-page .contacts-info-card a {
  color: #24497b;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
  transition: color 250ms ease;
}

.contacts-page .contacts-info-card a:hover {
  color: #1b3a5f;
}

.contacts-page .contacts-info-card__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts-page .contacts-info-card__links h3 {
  margin-bottom: 0;
}

.contacts-page .contacts-form-card {
  padding: 32px;
  border-radius: 8px;
  background: #fafafa;
}

.contacts-page .contacts-form-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.contacts-page input,
.contacts-page textarea,
.contacts-page select,
.contacts-page button {
  font-family: inherit;
}

.contacts-page .contacts-form-tab {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: #525252;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.contacts-page .contacts-form-tab.is-active {
  background: #24497b;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(36, 73, 123, 0.18);
}

.contacts-page .contacts-form-tab:not(.is-active):hover {
  background: #f5f5f5;
}

.contacts-page .contacts-form-tab svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.contacts-page .contacts-form-panel[hidden] {
  display: none;
}

.contacts-page .contacts-form-field {
  margin-bottom: 24px;
}

.contacts-page .contacts-form-field label {
  display: block;
  margin-bottom: 8px;
  color: #171717;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.contacts-page .contacts-required {
  color: #dc2626;
  font-weight: 500;
}

.contacts-page .contacts-form-field input,
.contacts-page .contacts-form-field select,
.contacts-page .contacts-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  background: #ffffff;
  color: #171717;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.contacts-page .contacts-form-field textarea {
  font-family: inherit;
  resize: vertical;
}

.contacts-page input::placeholder,
.contacts-page textarea::placeholder {
  font-family: inherit;
  color: #9ca3af;
  opacity: 1;
}

.contacts-page .contacts-form-field input:focus,
.contacts-page .contacts-form-field select:focus,
.contacts-page .contacts-form-field textarea:focus {
  border-color: transparent;
  outline: none;
  box-shadow: 0 0 0 2px #24497b;
}

.contacts-page .contacts-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  padding: 16px 32px;
  border: 0;
  border-radius: 6px;
  background: #24497b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background 250ms ease, transform 250ms ease;
}

.contacts-page .contacts-submit:hover {
  background: #1b3a5f;
}

.contacts-page .contacts-submit__icon {
  order: 0;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.contacts-page .contacts-submit span {
  order: 1;
}

.contacts-page .contacts-privacy-note {
  margin: 16px 0 0;
  color: #525252;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.contacts-page .contacts-privacy-open {
  padding: 0;
  border: 0;
  background: none;
  color: #24497b;
  text-decoration: underline;
  cursor: pointer;
}

.contacts-page .contacts-privacy-open:hover {
  color: #1b3a5f;
}

.contacts-page .contacts-form-notice {
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 8px;
  background: rgba(220, 252, 231, 0.85);
  color: #166534;
  font-size: 14px;
  line-height: 1.5;
}

.contacts-page .contacts-form-notice[hidden] {
  display: none;
}

.contacts-page .contacts-form-success[hidden] {
  display: none;
}

.contacts-page .contacts-form-success {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 8px;
  background: rgba(220, 252, 231, 0.85);
  color: #166534;
  font-size: 14px;
  line-height: 1.5;
}

.contacts-page .contacts-form-success.is-visible {
  display: block;
}

.contacts-page .contacts-offices h2 {
  margin-bottom: 24px;
}

.contacts-page .contacts-city-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.contacts-page .contacts-city-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid rgba(36, 73, 123, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: #24497b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.contacts-page .contacts-city-tab:hover {
  border-color: rgba(36, 73, 123, 0.4);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contacts-page .contacts-city-tab.is-active {
  border-color: #24497b;
  background: #24497b;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(36, 73, 123, 0.18);
}

.contacts-page .contacts-city-tab svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.contacts-page .contacts-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.contacts-page .contacts-office-card {
  padding: 32px;
  border: 1px solid rgba(36, 73, 123, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, #ebf3f9 0%, #ffffff 100%);
}

.contacts-page .contacts-office-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contacts-page .contacts-office-icon {
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(36, 73, 123, 0.1);
  color: #24497b;
}

.contacts-page .contacts-office-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.contacts-page .contacts-office-card h3 {
  margin: 0 0 16px;
  color: #24497b;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.contacts-page .contacts-office-hours h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.contacts-page .contacts-office-card p {
  margin: 0;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.contacts-page .contacts-office-card p + p {
  margin-top: 4px;
}

.contacts-page .contacts-map {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.contacts-page .contacts-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
  transition: opacity 250ms ease;
}

.contacts-page .contacts-map.is-loading iframe {
  opacity: 0.45;
}

.contacts-page .contacts-privacy-modal[hidden] {
  display: none;
}

.contacts-page .contacts-privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.contacts-page .contacts-privacy-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 768px);
  max-height: min(90vh, 760px);
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
}

.contacts-page .contacts-privacy-bar {
  flex: 0 0 auto;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #24497b, #c5e0e3, #24497b);
}

.contacts-page .contacts-privacy-content {
  flex: 1 1 auto;
  max-height: calc(90vh - 16px);
  overflow-y: auto;
  padding: 32px;
}

.contacts-page .contacts-privacy-content h2 {
  margin: 0 40px 20px 0;
  color: #24497b;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.contacts-page .contacts-privacy-content h3 {
  margin: 22px 0 8px;
  color: #171717;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.contacts-page .contacts-privacy-content p {
  margin: 0 0 10px;
  color: #404040;
  font-size: 16px;
  line-height: 1.6;
}

.contacts-page .contacts-privacy-content ul {
  margin: 0 0 10px;
  padding-left: 20px;
  color: #404040;
  font-size: 16px;
  line-height: 1.6;
}

.contacts-page .contacts-privacy-content li + li {
  margin-top: 4px;
}

.contacts-page .contacts-privacy-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #525252;
  cursor: pointer;
  transition: transform 250ms ease, color 250ms ease;
}

.contacts-page .contacts-privacy-close:hover {
  transform: scale(1.1);
  color: #171717;
}

.contacts-page .contacts-privacy-close svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

@media (min-width: 1024px) {
  .contacts-page .contacts-page__inner {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 1023px) {
  .contacts-page .contacts-layout,
  .contacts-page .contacts-office-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contacts-page .contacts-page__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contacts-page .contacts-hero {
    margin-bottom: 48px;
  }

  .contacts-page .contacts-hero h1 {
    font-size: 36px;
  }

  .contacts-page .contacts-hero p {
    font-size: 18px;
  }

  .contacts-page .contacts-layout {
    gap: 32px;
  }

  .contacts-page .contacts-info,
  .contacts-page .contacts-form-card,
  .contacts-page .contacts-office-card {
    padding: 24px;
  }

  .contacts-page .contacts-form-tabs,
  .contacts-page .contacts-city-tabs {
    flex-direction: column;
  }

  .contacts-page .contacts-city-tab {
    width: 100%;
    justify-content: center;
  }

  .contacts-page .contacts-info-card a {
    font-size: 18px;
  }

  .contacts-page .contacts-office-card h3 {
    font-size: 26px;
  }

  .contacts-page .contacts-map {
    aspect-ratio: 4 / 3;
  }

  .contacts-page .contacts-privacy-content {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .contacts-page .contacts-info-card,
  .contacts-page .contacts-office-row {
    gap: 14px;
  }

  .contacts-page .contacts-info-card__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contacts-page *,
  .contacts-page *::before,
  .contacts-page *::after {
    animation: none !important;
    transition: none !important;
  }

  .contacts-page [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Career page */
.career-page {
  background: #ffffff;
  color: #171717;
}

.career-page .career-page__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.career-page .career-page__content {
  max-width: 896px;
}

.career-page [data-career-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.career-page [data-career-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.career-page .career-hero {
  max-width: 896px;
  margin: 0 0 64px;
}

.career-page .career-hero h1 {
  margin: 0 0 24px;
  color: #24497b;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.career-page .career-hero p {
  margin: 0;
  color: #525252;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.career-page .career-challenge {
  position: relative;
  overflow: hidden;
  max-width: 896px;
  margin: 0 0 48px;
  padding: 48px;
  border-radius: 8px;
  background: #24497b;
  color: #ffffff;
}

.career-page .career-challenge__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 85% 78%, rgba(197, 224, 227, 0.18), transparent 34%);
  pointer-events: none;
}

.career-page .career-challenge__content {
  position: relative;
  z-index: 1;
}

.career-page .career-challenge h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.career-page .career-challenge p {
  margin: 0 0 24px;
  color: #b6c8d8;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.career-page .career-challenge p:last-child {
  margin-bottom: 0;
}

.career-page .career-benefits,
.career-page .career-specialists,
.career-page .career-values {
  max-width: 896px;
  margin: 0 0 48px;
}

.career-page .career-benefits h2,
.career-page .career-specialists h2,
.career-page .career-values h2,
.career-page .career-join h2 {
  margin: 0 0 24px;
  color: #24497b;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

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

.career-page .career-benefit-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

.career-page .career-benefit-card:hover {
  border-color: #24497b;
  box-shadow: 0 12px 28px rgba(36, 73, 123, 0.12);
  transform: translateY(-2px);
}

.career-page .career-benefit-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.career-page .career-benefit-card__icon {
  display: flex;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #edf2f7;
  color: #24497b;
  transition:
    background 300ms ease,
    color 300ms ease,
    transform 300ms ease;
}

.career-page .career-benefit-card:hover .career-benefit-card__icon {
  background: #24497b;
  color: #ffffff;
  transform: scale(1.04);
}

.career-page .career-benefit-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-page .career-benefit-card h3 {
  margin: 0 0 8px;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  transition: color 250ms ease;
}

.career-page .career-benefit-card:hover h3 {
  color: #24497b;
}

.career-page .career-benefit-card p {
  margin: 0;
  color: #404040;
  font-size: 16px;
  line-height: 1.6;
}

.career-page .career-benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #24497b;
  transition: width 500ms ease;
}

.career-page .career-benefit-card:hover::after {
  width: 100%;
}

.career-page .career-specialists__panel {
  padding: 32px;
  border-radius: 8px;
  background: #fafafa;
}

.career-page .career-specialists ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-page .career-specialists li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.career-page .career-specialists__dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 12px;
  border-radius: 50%;
  background: #24497b;
}

.career-page .career-specialists p {
  margin: 0;
  color: #404040;
  font-size: 18px;
  line-height: 1.6;
}

.career-page .career-values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.career-page .career-value-card {
  padding: 24px;
  border: 1px solid rgba(36, 73, 123, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, #ebf3f9 0%, #ffffff 100%);
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

.career-page .career-value-card:hover {
  border-color: rgba(36, 73, 123, 0.4);
  box-shadow: 0 10px 24px rgba(36, 73, 123, 0.1);
  transform: translateY(-2px);
}

.career-page .career-value-card h3 {
  margin: 0 0 8px;
  color: #171717;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.career-page .career-value-card p {
  margin: 0;
  color: #404040;
  font-size: 16px;
  line-height: 1.6;
}

.career-page .career-join {
  max-width: 896px;
  padding: 32px;
  border-radius: 8px;
  background: #fafafa;
}

.career-page .career-join > p {
  margin: 0 0 24px;
  color: #404040;
  font-size: 18px;
  line-height: 1.6;
}

.career-page .career-resume-card {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
}

.career-page .career-resume-card h3 {
  margin: 0 0 16px;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.career-page .career-resume-card p {
  margin: 0 0 16px;
  color: #404040;
  font-size: 16px;
  line-height: 1.6;
}

.career-page .career-resume-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.career-page .career-resume-card li {
  position: relative;
  padding-left: 20px;
  color: #404040;
  font-size: 16px;
  line-height: 1.55;
}

.career-page .career-resume-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #24497b;
}

.career-page .career-send-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 6px;
  background: #24497b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 250ms ease,
    transform 250ms ease,
    box-shadow 250ms ease;
}

.career-page .career-send-link:hover {
  background: #1b3a5f;
  box-shadow: 0 10px 24px rgba(36, 73, 123, 0.18);
  transform: translateY(-1px);
}

.career-page .career-send-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-page .career-join > .career-confidential-note {
  width: 100%;
  max-width: 100%;
  margin: 20px 0 0;
  color: #525252;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}

@media (min-width: 1024px) {
  .career-page .career-page__inner {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 767px) {
  .career-page .career-page__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .career-page .career-hero {
    margin-bottom: 48px;
  }

  .career-page .career-hero h1 {
    font-size: 36px;
  }

  .career-page .career-hero p,
  .career-page .career-challenge p,
  .career-page .career-specialists p,
  .career-page .career-join > p {
    font-size: 17px;
  }

  .career-page .career-challenge,
  .career-page .career-join,
  .career-page .career-specialists__panel {
    padding: 24px;
  }

  .career-page .career-benefits__grid,
  .career-page .career-values__grid {
    grid-template-columns: 1fr;
  }

  .career-page .career-benefit-card__inner {
    gap: 14px;
  }

  .career-page .career-benefit-card__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .career-page .career-benefit-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .career-page .career-send-link {
    display: flex;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .career-page .career-benefit-card__inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .career-page *,
  .career-page *::before,
  .career-page *::after {
    animation: none !important;
    transition: none !important;
  }

  .career-page [data-career-reveal] {
    opacity: 1;
    transform: none;
  }
}

.error-page {
  background: #ffffff;
}

.error-page__inner {
  min-height: clamp(620px, calc(100vh - 300px), 780px);
  display: flex;
  align-items: center;
  padding: clamp(96px, 15vh, 184px) 0 clamp(112px, 16vh, 184px);
}

.error-page__container {
  max-width: 760px;
  text-align: center;
}

.error-page__illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  color: #24497b;
}

.error-page__case {
  width: 304px;
  max-width: calc(100vw - 64px);
  height: auto;
}

.error-page__title {
  margin: 0;
  color: #24497b;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.error-page__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(180px, 48vw);
  margin: 28px auto 24px;
  color: #b6c8d8;
}

.error-page__divider span {
  flex: 1 1 auto;
  height: 1px;
  background: #d6e1ea;
}

.error-page__divider svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.error-page__text {
  margin: 0;
  color: #5f728b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
}

.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}

.error-page__button {
  min-width: 186px;
  min-height: 74px;
  border-radius: 0;
  padding: 18px 28px;
  color: #24497b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  box-shadow: none;
}

.error-page__button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.error-page__button--primary {
  background: #24497b;
  color: #ffffff;
}

.error-page__button--outline {
  border: 1px solid #24497b;
  background: #ffffff;
}

.error-page__button--light {
  border: 1px solid #eef2f6;
  background: #f1f5f8;
}

.error-page__button--outline:hover,
.error-page__button--outline:focus-visible,
.error-page__button--light:hover,
.error-page__button--light:focus-visible {
  border-color: #24497b;
  background: rgba(36, 73, 123, 0.06);
}

@media (max-width: 767px) {
  .error-page__inner {
    min-height: 0;
    padding: 72px 0 88px;
  }

  .error-page__illustration {
    margin-bottom: 28px;
  }

  .error-page__case {
    width: 304px;
    max-width: calc(100vw - 48px);
  }

  .error-page__title {
    font-size: 34px;
  }

  .error-page__text {
    font-size: 16px;
  }

  .error-page__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 36px;
  }

  .error-page__button {
    width: 100%;
    min-width: 0;
    min-height: 62px;
  }
}

@media (max-width: 420px) {
  .error-page__title {
    font-size: 30px;
  }

  .error-page__text br {
    display: none;
  }
}
