/* Стройдок-АБВ: страницы «О компании» и «Наша команда». */
.sd-corp {
  --sd-ink: #0b1d34;
  --sd-ink-soft: #31445d;
  --sd-blue: #005eac;
  --sd-orange: #ff6400;
  --sd-orange-dark: #dd5000;
  --sd-line: #d9e2ec;
  --sd-paper: #f3f6f9;
  --sd-white: #fff;
  color: var(--sd-ink);
  background: var(--sd-white);
  overflow: clip;
  line-height: 1.55;
}

.sd-corp *,
.sd-corp *::before,
.sd-corp *::after { box-sizing: border-box; }
.sd-corp [hidden] { display: none !important; }
.sd-corp img { display: block; max-width: 100%; }
.sd-corp button,
.sd-corp input { font: inherit; }
.sd-corp button { cursor: pointer; }

.sd-corp-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sd-corp h1,
.sd-corp h2,
.sd-corp h3,
.sd-corp p { margin-top: 0; }
.sd-corp h1,
.sd-corp h2,
.sd-corp h3 {
  color: inherit;
  font-family: inherit;
  letter-spacing: -0.035em;
}

.sd-corp h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
}

.sd-corp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--sd-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}
.sd-corp-eyebrow i {
  width: 28px;
  height: 3px;
  background: var(--sd-orange);
}
.sd-corp-eyebrow--light { color: #c8d5e5; }

.sd-corp-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.sd-corp-button:hover { transform: translateY(-2px); }
.sd-corp-button--primary {
  border-color: var(--sd-orange);
  color: #fff !important;
  background: var(--sd-orange);
  box-shadow: 0 12px 28px rgba(255, 100, 0, .22);
}
.sd-corp-button--primary:hover {
  border-color: var(--sd-orange-dark);
  background: var(--sd-orange-dark);
}
.sd-corp-button--secondary {
  border-color: #b7c5d5;
  color: var(--sd-ink) !important;
  background: transparent;
}
.sd-corp-button--secondary:hover {
  border-color: var(--sd-blue);
  color: var(--sd-blue) !important;
}

.sd-corp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sd-blue) !important;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none !important;
}
.sd-corp-text-link span { transition: transform .2s ease; }
.sd-corp-text-link:hover span { transform: translateX(5px); }

.sd-corp-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, .8fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}
.sd-corp-heading > p {
  margin: 0;
  color: var(--sd-ink-soft);
  font-size: 17px;
}
.sd-corp-heading > .sd-corp-button { justify-self: end; }

/* Hero */
.sd-corp-hero {
  position: relative;
  color: #fff;
  background: #081b32;
  isolation: isolate;
}
.sd-corp-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: 36%;
  background: #0d2744;
}
.sd-corp-hero::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: -1;
  width: 170px;
  height: 9px;
  background: var(--sd-orange);
}
.sd-corp-breadcrumbs {
  display: flex;
  gap: 10px;
  padding-top: 25px;
  color: #9fb0c4;
  font-size: 13px;
}
.sd-corp-breadcrumbs a {
  color: #d7e0e9 !important;
  text-decoration: none !important;
}
.sd-corp-hero__grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr);
  gap: 74px;
  align-items: center;
  padding-block: 54px 70px;
}
.sd-corp-hero__content { position: relative; z-index: 2; }
.sd-corp-hero__content .sd-corp-eyebrow { color: #ccd8e5; }
.sd-corp-hero__content h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: .98;
}
.sd-corp-hero__content h1 em {
  display: block;
  color: var(--sd-orange);
  font-style: normal;
}
.sd-corp-hero__content > p {
  max-width: 710px;
  margin-bottom: 34px;
  color: #c7d3df;
  font-size: 19px;
  line-height: 1.55;
}
.sd-corp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.sd-corp-hero .sd-corp-button--secondary {
  border-color: #55708c;
  color: #fff !important;
}
.sd-corp-hero .sd-corp-button--secondary:hover { border-color: #fff; color: #fff !important; }
.sd-corp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid #304863;
}
.sd-corp-hero__stats > * {
  min-width: 150px;
  padding: 0 25px;
  border-left: 1px solid #304863;
  color: #aebed0 !important;
  font-size: 13px;
  text-decoration: none !important;
}
.sd-corp-hero__stats > *:first-child { padding-left: 0; border-left: 0; }
.sd-corp-hero__stats b {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 25px;
  line-height: 1.1;
}

/* Карточка компании */
.sd-company-identity,
.sd-team-collage {
  position: relative;
  z-index: 1;
  margin-left: auto;
}
.sd-company-identity { width: min(100%, 410px); }
.sd-company-identity__photos {
  position: relative;
  height: 420px;
}
.sd-company-identity__photo {
  position: absolute;
  overflow: hidden;
  border: 7px solid #0d2744;
  background: #d8e2ec;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .3);
}
.sd-company-identity__photo img { width: 100%; height: 100%; object-fit: cover; }
.sd-company-identity__photo--1 { inset: 0 62px 42px 0; z-index: 3; }
.sd-company-identity__photo--2 { width: 145px; height: 180px; right: -5px; top: 42px; z-index: 3; }
.sd-company-identity__photo--3 { width: 160px; height: 175px; right: 5px; bottom: 4px; z-index: 4; }
.sd-company-identity__meta {
  position: relative;
  z-index: 5;
  width: calc(100% - 42px);
  margin: -31px 0 0 42px;
  padding: 23px 25px;
  color: var(--sd-ink);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}
.sd-company-identity__meta span,
.sd-team-collage__caption span {
  display: block;
  margin-bottom: 5px;
  color: var(--sd-orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sd-company-identity__meta strong { display: block; font-size: 27px; line-height: 1.1; }
.sd-company-identity__meta p { margin: 10px 0 0; color: #53657b; font-size: 13px; }

/* Направления */
.sd-company-directions,
.sd-team-experts { padding: 108px 0; background: #fff; }
.sd-company-directions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--sd-line);
  border-left: 1px solid var(--sd-line);
}
.sd-company-directions__grid a {
  position: relative;
  min-height: 280px;
  padding: 32px;
  border-right: 1px solid var(--sd-line);
  border-bottom: 1px solid var(--sd-line);
  color: var(--sd-ink) !important;
  background: #fff;
  text-decoration: none !important;
  transition: background-color .2s ease, color .2s ease;
}
.sd-company-directions__grid a:hover { color: #fff !important; background: var(--sd-blue); }
.sd-company-directions__grid a > span {
  display: block;
  margin-bottom: 45px;
  color: var(--sd-orange);
  font-size: 13px;
  font-weight: 900;
}
.sd-company-directions__grid strong {
  display: block;
  max-width: 290px;
  margin-bottom: 13px;
  font-size: 22px;
  line-height: 1.2;
}
.sd-company-directions__grid p { margin: 0; color: #64758a; font-size: 15px; }
.sd-company-directions__grid a:hover p { color: #d6e4f1; }
.sd-company-directions__grid i {
  position: absolute;
  right: 28px;
  bottom: 25px;
  font-size: 24px;
  font-style: normal;
}

/* Стандарт */
.sd-company-standard,
.sd-team-collaboration {
  padding: 105px 0;
  color: #fff;
  background: var(--sd-ink);
}
.sd-company-standard__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 95px;
}
.sd-company-standard__intro h2,
.sd-team-collaboration__intro h2 { color: #fff; }
.sd-company-standard__intro p,
.sd-team-collaboration__intro p {
  margin: 24px 0 30px;
  color: #b9c8d7;
  font-size: 17px;
}
.sd-company-standard__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #31465e;
  border-left: 1px solid #31465e;
}
.sd-company-standard__facts article {
  min-height: 225px;
  padding: 27px;
  border-right: 1px solid #31465e;
  border-bottom: 1px solid #31465e;
}
.sd-company-standard__facts b {
  display: block;
  margin-bottom: 26px;
  color: var(--sd-orange);
  font-size: 30px;
  line-height: 1;
}
.sd-company-standard__facts strong { display: block; margin-bottom: 9px; font-size: 17px; }
.sd-company-standard__facts p { margin: 0; color: #9eafc1; font-size: 14px; }

/* Процесс */
.sd-company-process { padding: 105px 0; background: var(--sd-paper); }
.sd-company-process__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sd-company-process__grid article {
  min-height: 240px;
  padding: 0 30px;
  border-left: 1px solid #cfd9e3;
}
.sd-company-process__grid article:first-child { padding-left: 0; border-left: 0; }
.sd-company-process__grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--sd-orange);
  font-size: 13px;
  font-weight: 900;
}
.sd-company-process__grid h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.2; }
.sd-company-process__grid p { margin: 0; color: #617287; font-size: 15px; }

/* Клиенты */
.sd-company-clients { padding: 105px 0; background: #fff; }
.sd-company-clients__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 95px;
  align-items: center;
}
.sd-company-clients__content p { margin: 24px 0 24px; color: var(--sd-ink-soft); font-size: 17px; }
.sd-company-clients__names {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--sd-line);
  border-left: 1px solid var(--sd-line);
}
.sd-company-clients__names span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px 23px;
  border-right: 1px solid var(--sd-line);
  border-bottom: 1px solid var(--sd-line);
  font-size: 15px;
  font-weight: 800;
}

/* Сертификаты */
.sd-company-certificates { padding: 105px 0; background: var(--sd-paper); }
.sd-company-certificates__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.sd-company-certificate {
  padding: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--sd-line);
  border-radius: 0;
  color: var(--sd-ink);
  background: #fff;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sd-company-certificate:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(11, 29, 52, .12); }
.sd-company-certificate__image {
  height: 260px;
  display: block;
  margin-bottom: 20px;
  padding: 18px;
  background: #e7edf3;
}
.sd-company-certificate__image img { width: 100%; height: 100%; object-fit: contain; }
.sd-company-certificate > strong { display: block; min-height: 58px; padding: 0 20px; font-size: 15px; line-height: 1.35; }
.sd-company-certificate > span:last-child { display: block; padding: 12px 20px 0; color: var(--sd-blue); font-size: 14px; font-weight: 800; }

/* Команда на странице компании */
.sd-company-team { padding: 105px 0; background: #fff; }
.sd-company-team__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.sd-company-person { color: var(--sd-ink) !important; background: #fff; text-decoration: none !important; }
.sd-company-person__photo { height: 275px; display: block; overflow: hidden; background: #dfe7ef; }
.sd-company-person__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.9); transition: transform .35s ease; }
.sd-company-person:hover .sd-company-person__photo img { transform: scale(1.035); }
.sd-company-person__info { position: relative; min-height: 132px; display: block; padding: 21px 40px 20px 0; border-bottom: 2px solid var(--sd-line); }
.sd-company-person:hover .sd-company-person__info { border-color: var(--sd-orange); }
.sd-company-person__info strong { display: block; margin-bottom: 8px; font-size: 16px; line-height: 1.3; }
.sd-company-person__info small { display: block; color: #64758a; font-size: 13px; line-height: 1.35; }
.sd-company-person__info i { position: absolute; right: 4px; top: 20px; color: var(--sd-orange); font-size: 22px; font-style: normal; }

/* Динамический фотоколлаж команды в hero */
.sd-team-collage {
  width: min(100%, 440px);
  padding: 12px 12px 0 0;
}
.sd-team-collage::before {
  content: "";
  position: absolute;
  inset: -12px -4px 54px 48%;
  border: 2px solid var(--sd-orange);
  pointer-events: none;
}
.sd-team-collage::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -18px;
  width: 86px;
  height: 86px;
  opacity: .2;
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.7px);
  background-size: 13px 13px;
  pointer-events: none;
}
.sd-team-collage__stage {
  position: relative;
  z-index: 1;
  height: 490px;
}
.sd-team-collage__card {
  position: absolute;
  top: var(--sd-team-y);
  left: var(--sd-team-x);
  z-index: var(--sd-team-z);
  width: var(--sd-team-card-width);
  aspect-ratio: .75;
  overflow: hidden;
  border: 5px solid #fff;
  color: #fff !important;
  background: #dbe4ed;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .34);
  text-decoration: none !important;
  transform: rotate(var(--sd-team-angle));
  transform-origin: center;
  transition: transform .24s ease, box-shadow .24s ease, z-index 0s;
}
.sd-team-collage__card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(5, 18, 34, .92), transparent);
  opacity: 0;
  transition: opacity .2s ease;
}
.sd-team-collage__card:hover,
.sd-team-collage__card:focus-visible {
  z-index: 40;
  outline: 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .46), 0 0 0 3px var(--sd-orange);
  transform: rotate(0) translateY(-8px) scale(1.035);
}
.sd-team-collage__card:hover::after,
.sd-team-collage__card:focus-visible::after { opacity: 1; }
.sd-team-collage__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.92) contrast(1.02);
}
.sd-team-collage__initial {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #8496aa;
  background: linear-gradient(145deg, #eef3f7, #c9d5e0);
  font-size: clamp(52px, 9vw, 86px);
  font-weight: 900;
}
.sd-team-collage__name {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: block;
  overflow: hidden;
  opacity: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}
.sd-team-collage__card:hover .sd-team-collage__name,
.sd-team-collage__card:focus-visible .sd-team-collage__name { opacity: 1; transform: none; }
.sd-team-collage__caption {
  position: relative;
  z-index: 45;
  width: calc(100% - 34px);
  margin: -54px 0 0 34px;
  padding: 22px 24px;
  color: var(--sd-ink);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .25);
}
.sd-team-collage__caption strong { display: block; font-size: 20px; line-height: 1.2; }
.sd-team-collage__caption small { display: block; margin-top: 7px; color: #607187; font-size: 13px; }

/* Вступление команды */
.sd-team-intro { padding: 90px 0; background: var(--sd-paper); }
.sd-team-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: 100px;
  align-items: end;
}
.sd-team-intro__copy { padding-left: 38px; border-left: 3px solid var(--sd-orange); }
.sd-team-intro__copy p { margin-bottom: 20px; color: var(--sd-ink-soft); font-size: 17px; }

/* Карточки команды */
.sd-team-experts { scroll-margin-top: 30px; }
.sd-team-experts__list { display: grid; gap: 28px; }
.sd-team-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  border: 1px solid var(--sd-line);
  background: #fff;
  scroll-margin-top: 30px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sd-team-card:target,
.sd-team-card:hover { border-color: #9cb6d0; box-shadow: 0 20px 50px rgba(11, 29, 52, .09); }
.sd-team-card--featured { border-top: 5px solid var(--sd-orange); }
.sd-team-card__photo { position: relative; min-height: 500px; overflow: hidden; background: #dce5ee; }
.sd-team-card__photo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55px;
  height: 7px;
  background: var(--sd-orange);
}
.sd-team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.sd-team-card__photo > span { height: 100%; display: grid; place-items: center; color: #8496aa; font-size: 90px; font-weight: 900; }
.sd-team-card__photo small {
  position: absolute;
  left: 20px;
  bottom: 18px;
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--sd-ink);
  font-size: 13px;
  font-weight: 900;
}
.sd-team-card__main { min-width: 0; padding: 40px 44px 36px; }
.sd-team-card__topline { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; margin-bottom: 15px; }
.sd-team-card__topline span {
  color: var(--sd-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sd-team-card__topline b { color: #63758a; font-size: 13px; font-weight: 800; }
.sd-team-card h3 { margin: 0 0 18px; font-size: clamp(28px, 3vw, 40px); line-height: 1.04; }
.sd-team-card__about { max-width: 760px; color: var(--sd-ink-soft); font-size: 17px; }
.sd-team-card__about p:last-child { margin-bottom: 0; }
.sd-team-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--sd-line);
}
.sd-team-card__detail > span {
  display: block;
  margin-bottom: 10px;
  color: #8090a3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sd-team-card__detail p { margin: 0; color: #42566e; font-size: 14px; }
.sd-team-card__detail ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.sd-team-card__detail li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; color: #42566e; font-size: 14px; }
.sd-team-card__detail li::before { content: ""; flex: 0 0 5px; width: 5px; height: 5px; margin-top: 7px; background: var(--sd-orange); }
.sd-team-card__detail li > span { flex: 1 1 auto; }
.sd-team-card__detail li a { flex: 0 0 auto; color: var(--sd-blue) !important; font-size: 12px; font-weight: 800; text-decoration: none !important; }
.sd-team-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 30px; }
.sd-team-copy {
  min-height: 44px;
  padding: 7px 0;
  border: 0;
  color: #66788d;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}
.sd-team-copy span { color: var(--sd-orange); font-size: 19px; }
.sd-team-copy:hover { color: var(--sd-blue); }

/* Совместная работа */
.sd-team-collaboration__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 100px;
}
.sd-team-collaboration__steps { margin: 0; padding: 0; border-top: 1px solid #31465e; list-style: none; }
.sd-team-collaboration__steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 25px;
  padding: 27px 0;
  border-bottom: 1px solid #31465e;
}
.sd-team-collaboration__steps li > span { color: var(--sd-orange); font-size: 13px; font-weight: 900; }
.sd-team-collaboration__steps strong { display: block; margin-bottom: 6px; font-size: 18px; }
.sd-team-collaboration__steps p { margin: 0; color: #a8b8c9; font-size: 14px; }

/* Финальная форма */
.sd-corp-final { padding: 105px 0; color: #fff; background: #063e6e; }
.sd-corp-final__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, .75fr);
  gap: 90px;
  align-items: center;
}
.sd-corp-final__content h2 { color: #fff; }
.sd-corp-final__content > p { max-width: 620px; margin: 24px 0 32px; color: #c7d8e7; font-size: 17px; }
.sd-corp-final__contacts { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.sd-corp-final__contacts a { color: #fff !important; font-size: 18px; font-weight: 800; text-decoration: none !important; }
.sd-corp-final__form { min-width: 0; padding: 5px; background: #fff; box-shadow: 0 25px 60px rgba(0, 0, 0, .2); }
.sd-corp-final__form .article-cta { margin: 0 !important; padding: 0 !important; background: transparent !important; }
.sd-corp-final__form .upload-box {
  margin: 0 !important;
  padding: 30px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--sd-ink) !important;
  background: #fff !important;
  box-shadow: none !important;
}
.sd-corp-final__form .form-header-text { margin-bottom: 20px !important; color: var(--sd-ink) !important; font-size: 23px !important; line-height: 1.2 !important; }
.sd-corp-final__form .form-field { margin-bottom: 11px !important; }
.sd-corp-final__form input[type="tel"],
.sd-corp-final__form input[type="text"],
.sd-corp-final__form input[type="email"] {
  width: 100% !important;
  min-height: 54px !important;
  padding: 14px 16px !important;
  border: 1px solid #cad5e0 !important;
  border-radius: 3px !important;
  color: var(--sd-ink) !important;
  background: #f8fafc !important;
  box-shadow: none !important;
}
.sd-corp-final__form input::placeholder { color: #78889a !important; opacity: 1; }
.sd-corp-final__form .field-caption,
.sd-corp-final__form .cta-fast-response,
.sd-corp-final__form .form-privacy-inline,
.sd-corp-final__form .form-bottom-hint { color: #66778a !important; }
.sd-corp-final__form .upload-send-btn {
  width: 100% !important;
  min-height: 59px !important;
  margin-top: 6px !important;
  border: 0 !important;
  border-radius: 3px !important;
  color: #fff !important;
  background: var(--sd-orange) !important;
  box-shadow: 0 10px 24px rgba(255, 100, 0, .2) !important;
}
.sd-corp-final__form .upload-send-btn:hover { background: var(--sd-orange-dark) !important; }
.sd-corp-final__form .step1-trustline { color: #285b41 !important; }

/* Лайтбокс и сообщение */
.sd-corp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 60px 24px 24px;
  background: rgba(5, 17, 31, .93);
}
.sd-corp-lightbox__close {
  position: fixed;
  top: 18px;
  right: 25px;
  width: 46px;
  height: 46px;
  border: 1px solid #718198;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 30px;
  line-height: 1;
}
.sd-corp-lightbox__content { max-width: min(920px, 95vw); max-height: calc(100vh - 90px); text-align: center; }
.sd-corp-lightbox__content img { max-height: calc(100vh - 140px); margin: auto; object-fit: contain; }
.sd-corp-lightbox__content p { margin: 13px 0 0; color: #fff; }
body.sd-corp-modal-open { overflow: hidden; }
.sd-corp-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  padding: 13px 18px;
  color: #fff;
  background: var(--sd-ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .sd-corp-hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 42px; }
  .sd-company-directions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sd-company-team__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 16px; }
  .sd-company-standard__grid,
  .sd-company-clients__grid,
  .sd-team-collaboration__grid { gap: 55px; }
  .sd-company-certificates__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sd-team-card { grid-template-columns: 290px minmax(0, 1fr); }
  .sd-team-card__main { padding: 34px; }
  .sd-corp-final__grid { gap: 55px; }
}

@media (max-width: 900px) {
  .sd-corp-container { width: min(100% - 36px, 720px); }
  .sd-corp-hero::before { width: 100%; height: 39%; inset: auto 0 0; }
  .sd-corp-hero__grid { grid-template-columns: 1fr; gap: 58px; padding-top: 62px; }
  .sd-corp-hero__content h1 { max-width: 680px; }
  .sd-company-identity,
  .sd-team-collage { width: min(100%, 480px); margin-inline: auto; }
  .sd-company-identity__photos { height: 470px; }
  .sd-team-collage__stage { height: 530px; }
  .sd-corp-heading { grid-template-columns: 1fr; gap: 22px; }
  .sd-corp-heading > .sd-corp-button { justify-self: start; }
  .sd-company-standard__grid,
  .sd-company-clients__grid,
  .sd-team-intro__grid,
  .sd-team-collaboration__grid,
  .sd-corp-final__grid { grid-template-columns: 1fr; }
  .sd-company-process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 0; }
  .sd-company-process__grid article:nth-child(3) { padding-left: 0; border-left: 0; }
  .sd-team-intro__copy { padding-left: 26px; }
  .sd-team-card { grid-template-columns: 240px minmax(0, 1fr); }
  .sd-team-card__details { grid-template-columns: 1fr; }
  .sd-corp-final__grid { gap: 42px; }
  .sd-corp-final__form { width: min(100%, 560px); }
}

@media (max-width: 680px) {
  .sd-corp-container { width: min(100% - 28px, 560px); }
  .sd-corp h2 { font-size: clamp(32px, 10.4vw, 43px); }
  .sd-corp-eyebrow { margin-bottom: 17px; font-size: 11px; }
  .sd-corp-breadcrumbs { padding-top: 18px; }
  .sd-corp-hero__grid { min-height: 0; gap: 48px; padding: 43px 0 58px; }
  .sd-corp-hero__content h1 { margin-bottom: 20px; font-size: clamp(39px, 10.8vw, 50px); }
  .sd-corp-hero__content > p { margin-bottom: 27px; font-size: 17px; }
  .sd-corp-hero__actions { display: grid; grid-template-columns: 1fr; }
  .sd-corp-button { width: 100%; }
  .sd-corp-hero__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 0; margin-top: 30px; }
  .sd-corp-hero__stats > * { min-width: 0; padding: 0 14px; }
  .sd-corp-hero__stats > *:nth-child(3) { grid-column: 1 / -1; padding: 0; border-left: 0; }
  .sd-corp-hero__stats b { font-size: 22px; }
  .sd-company-identity__photos { height: 350px; }
  .sd-company-identity__photo { border-width: 5px; }
  .sd-company-identity__photo--1 { right: 50px; bottom: 36px; }
  .sd-company-identity__photo--2 { width: 115px; height: 145px; top: 28px; }
  .sd-company-identity__photo--3 { width: 130px; height: 140px; }
  .sd-company-identity__meta { width: calc(100% - 22px); margin-left: 22px; padding: 19px; }
  .sd-team-collage { padding-right: 7px; }
  .sd-team-collage::before { inset: -8px 0 48px 45%; }
  .sd-team-collage__stage { height: min(116vw, 500px); }
  .sd-team-collage__card { border-width: 4px; }
  .sd-team-collage__caption { width: calc(100% - 18px); margin-left: 18px; padding: 18px; }
  .sd-company-directions,
  .sd-company-standard,
  .sd-company-process,
  .sd-company-clients,
  .sd-company-certificates,
  .sd-company-team,
  .sd-team-intro,
  .sd-team-experts,
  .sd-team-collaboration,
  .sd-corp-final { padding: 72px 0; }
  .sd-corp-heading { margin-bottom: 34px; }
  .sd-company-directions__grid { grid-template-columns: 1fr; }
  .sd-company-directions__grid a { min-height: 235px; padding: 26px; }
  .sd-company-directions__grid a > span { margin-bottom: 34px; }
  .sd-company-standard__facts { grid-template-columns: 1fr; }
  .sd-company-standard__facts article { min-height: 0; }
  .sd-company-process__grid { grid-template-columns: 1fr; gap: 0; }
  .sd-company-process__grid article,
  .sd-company-process__grid article:nth-child(3) { min-height: 0; padding: 26px 0; border-left: 0; border-bottom: 1px solid #cfd9e3; }
  .sd-company-process__grid span { margin-bottom: 32px; }
  .sd-company-clients__names { grid-template-columns: 1fr; }
  .sd-company-clients__names span { min-height: 66px; }
  .sd-company-certificates__grid { grid-template-columns: 1fr; }
  .sd-company-certificate__image { height: 320px; }
  .sd-company-team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
  .sd-company-person__photo { height: 225px; }
  .sd-company-person__info { min-height: 150px; padding-right: 22px; }
  .sd-company-person__info i { display: none; }
  .sd-team-intro__copy { padding-left: 20px; }
  .sd-team-card { display: block; }
  .sd-team-card__photo { min-height: 0; height: min(112vw, 520px); }
  .sd-team-card__main { padding: 27px 22px 28px; }
  .sd-team-card__topline { display: grid; }
  .sd-team-card h3 { font-size: 30px; }
  .sd-team-card__about { font-size: 16px; }
  .sd-team-card__details { gap: 24px; }
  .sd-team-card__actions { display: grid; gap: 9px; }
  .sd-team-copy { width: 100%; }
  .sd-team-collaboration__steps li { grid-template-columns: 38px 1fr; gap: 15px; }
  .sd-corp-final__form { width: 100%; }
  .sd-corp-final__form .upload-box { padding: 22px 18px !important; }
  .sd-corp-final__form .form-header-text { font-size: 20px !important; }
  .sd-corp-final__contacts { display: grid; gap: 8px; }
  .sd-corp-lightbox { padding-inline: 12px; }
}

@media (max-width: 380px) {
  .sd-corp-container { width: min(100% - 22px, 340px); }
  .sd-corp-hero__content h1 { font-size: 39px; }
  .sd-company-team__grid { grid-template-columns: 1fr; }
  .sd-company-person__photo { height: 360px; }
  .sd-company-person__info { min-height: 0; }
  .sd-team-card__main { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .sd-corp *, .sd-corp *::before, .sd-corp *::after { scroll-behavior: auto !important; transition: none !important; }
}
