.content-header {
  position: relative;
  z-index: 10;
  height: 96px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #171719;
}
.content-header .hero__logo-link { top: 16px; }
.content-page-main { display: block; }
.content-hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at 78% 20%,rgba(238,97,85,.12),transparent 32%),
    linear-gradient(180deg,#171719 0%,#222226 100%);
}
.content-hero__grid {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr);
  align-items: center;
  gap: clamp(44px,7vw,96px);
}
.content-hero__copy { max-width: 660px; }
.content-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(40px,5.1vw,68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.content-hero__lead {
  margin: 0;
  color: #d0d0d4;
  font-size: 17px;
  line-height: 1.72;
}
.content-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.content-hero__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  box-shadow: 0 34px 70px rgba(0,0,0,.34);
}
.content-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 55%,rgba(0,0,0,.28));
  pointer-events: none;
}
.content-hero__image picture,
.content-hero__image img {
  width: 100%;
  height: 100%;
}
.content-hero__image img { object-fit: cover; }
.content-section { padding: 78px 0; }
.content-section--dark { background: #19191c; }
.content-section__heading {
  max-width: 780px;
  margin-bottom: 38px;
}
.content-section__heading h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.content-section__heading p {
  margin: 0;
  color: #c7c7cb;
  font-size: 16px;
  line-height: 1.7;
}
.content-cards {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.content-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid #3e3e44;
  border-radius: 22px;
  background: linear-gradient(145deg,#2d2d32 0%,#232327 100%);
}
.content-card__number {
  display: block;
  margin-bottom: 38px;
  color: var(--red);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}
.content-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}
.content-card p {
  margin: 0;
  color: #c8c8cc;
  font-size: 14px;
  line-height: 1.7;
}
.content-split {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr);
  gap: clamp(44px,7vw,92px);
  align-items: start;
}
.content-split h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.content-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.content-list li {
  position: relative;
  padding: 0 0 18px 28px;
  border-bottom: 1px solid #3d3d42;
  color: #d0d0d4;
  font-size: 15px;
  line-height: 1.68;
}
.content-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(238,97,85,.55);
}
.content-faq__grid {
  display: grid;
  grid-template-columns: minmax(240px,.65fr) minmax(0,1.35fr);
  gap: clamp(44px,7vw,90px);
  align-items: start;
}
.content-faq h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
}
.content-faq__items { border-top: 1px solid #444449; }
.content-faq details { border-bottom: 1px solid #444449; }
.content-faq summary {
  position: relative;
  padding: 22px 44px 22px 0;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}
.content-faq summary::-webkit-details-marker { display: none; }
.content-faq summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--red);
  font-size: 27px;
  font-weight: 300;
  transition: transform .2s;
}
.content-faq details[open] summary::after { transform: rotate(45deg); }
.content-faq details p {
  margin: 0;
  padding: 0 44px 22px 0;
  color: #c8c8cc;
  font-size: 14px;
  line-height: 1.75;
}
.content-related {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}
.content-related a {
  display: block;
  padding: 26px;
  border: 1px solid #3e3e44;
  border-radius: 20px;
  background: #27272b;
  transition: border-color .25s,background .25s,transform .25s;
}
.content-related a:hover,
.content-related a:focus-visible {
  border-color: #fff;
  background: #303035;
  transform: translateY(-3px);
}
.content-related span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.content-related strong { font-size: 18px; font-weight: 500; }
.content-cta {
  padding: 70px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0,rgba(238,97,85,.16),transparent 42%),
    #151517;
}
.content-cta h2 {
  max-width: 700px;
  margin: 0 auto 14px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
}
.content-cta p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #c7c7cb;
  line-height: 1.7;
}
.seo-overview__more {
  display: inline-block;
  margin-top: 18px;
  color: #ff8d84;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255,141,132,.45);
  text-underline-offset: 4px;
}
.seo-overview__more:hover,
.seo-overview__more:focus-visible { color: #fff; text-decoration-color: #fff; }

@media (max-width: 900px) {
  .content-hero__grid { grid-template-columns: 1fr; }
  .content-hero__copy { max-width: 760px; }
  .content-hero__image { max-width: 760px; }
  .content-cards { grid-template-columns: 1fr; }
  .content-card { min-height: 0; }
  .content-card__number { margin-bottom: 24px; }
}

@media (max-width: 700px) {
  .content-header { height: 86px; }
  .content-header .hero__logo-link { top: 12px; }
  .content-header .language-switch { top: 24px; right: 67px; }
  .content-header .menu-button { top: 21px; }
  .content-hero { padding: 50px 0 58px; }
  .content-hero__grid { gap: 38px; }
  .content-hero h1 { margin-bottom: 18px; font-size: 36px; }
  .content-hero__lead { font-size: 15px; }
  .content-hero__actions { margin-top: 28px; }
  .content-hero__image { border-radius: 22px; }
  .content-section { padding: 58px 0; }
  .content-section__heading { margin-bottom: 28px; }
  .content-section__heading h2,
  .content-split h2,
  .content-faq h2 { font-size: 27px; }
  .content-section__heading p { font-size: 14px; }
  .content-card { padding: 23px; }
  .content-split,
  .content-faq__grid { grid-template-columns: 1fr; gap: 30px; }
  .content-related { grid-template-columns: 1fr; }
  .content-cta { padding: 58px 0; }
  .content-cta h2 { font-size: 28px; }
}
