:root {
  --bg: #ffffff;
  --bg-soft: #f4f8f7;
  --bg-blue: #eef5f7;
  --text: #16201f;
  --muted: #64736f;
  --line: #dce6e3;
  --green: #184d38;
  --green-2: #286849;
  --blue: #526f82;
  --amber: #c59a45;
  --shadow: 0 22px 70px rgba(22, 32, 31, 0.11);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-color: rgba(24, 77, 56, 0.35);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green);
  text-decoration-color: currentColor;
}

p,
ul,
ol,
dl {
  margin: 0;
}

ul {
  padding-left: 1.15rem;
}

li + li {
  margin-top: 0.45rem;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--container), calc(100% - 48px));
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(220, 230, 227, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 44px rgba(22, 32, 31, 0.06);
  transition: box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-header.is-scrolled .site-header__inner {
  border-color: rgba(210, 222, 218, 0.98);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 48px rgba(22, 32, 31, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 38%),
    var(--green);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 12px 24px rgba(24, 77, 56, 0.18);
  font-size: 15px;
  font-weight: 800;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand__text strong {
  color: var(--text);
  font-size: 19px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.site-nav a:hover {
  background: #edf5f1;
}

.site-nav__email {
  color: var(--text);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(24, 77, 56, 0.18);
  border-radius: var(--radius);
  background: #f8fbfa;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(24, 77, 56, 0.18);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  color: #fff;
  background: var(--green-2);
  box-shadow: 0 18px 40px rgba(24, 77, 56, 0.22);
  transform: translateY(-1px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.request-form input:focus-visible {
  outline: 3px solid rgba(197, 154, 69, 0.48);
  outline-offset: 3px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid rgba(220, 230, 227, 0.96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(22, 32, 31, 0.18);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner__text p {
  margin: 0;
}

.cookie-banner__text p:first-child {
  color: var(--text);
  font-weight: 700;
}

.cookie-banner__text a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__button {
  white-space: nowrap;
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.button--secondary {
  color: var(--green);
  background: transparent;
  box-shadow: none;
}

.button--secondary:hover {
  color: var(--green);
  background: #edf5f1;
  box-shadow: none;
}

.section {
  padding: 92px 0;
}

.section--first {
  padding-top: 36px;
  padding-bottom: 44px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2,
.legal h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading--sticky {
  position: sticky;
  top: 110px;
  align-self: start;
  margin-bottom: 0;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f7faf9 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.company-name {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 12px 0 18px;
  font-size: clamp(34px, 3.85vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 640px;
  color: #33413e;
  font-size: 18px;
}

.hero__content > p:not(.company-name):not(.hero__lead):not(.hero__statement) {
  max-width: 620px;
  margin-top: 10px;
  color: var(--muted);
}

.hero__statement {
  max-width: 620px;
  margin-top: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 0;
  border: 1px solid rgba(220, 230, 227, 0.88);
  border-radius: var(--radius);
  background: #f6faf8;
  box-shadow: 0 34px 90px rgba(22, 32, 31, 0.16);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(246, 250, 248, 0), rgba(246, 250, 248, 0.78)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), rgba(24, 77, 56, 0.1));
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02) 50%, rgba(22, 32, 31, 0.04));
  pointer-events: none;
}

.hero-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 50%;
  transform: scale(1.015);
}

.hero-visual__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.05) 42%, rgba(6, 20, 17, 0.07)),
    radial-gradient(circle at 17% 22%, rgba(197, 154, 69, 0.13), transparent 27%),
    radial-gradient(circle at 82% 80%, rgba(24, 77, 56, 0.15), transparent 30%);
  mix-blend-mode: normal;
  pointer-events: none;
}

.hero-visual__stage {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.document-labels {
  position: absolute;
  top: 76px;
  right: 38px;
  width: min(390px, calc(100% - 76px));
  display: grid;
  gap: 9px;
}

.document-label {
  position: relative;
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 0 58px 0 54px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  color: var(--text);
  font-size: clamp(20px, 1.95vw, 27px);
  font-weight: 700;
  line-height: 1.05;
  box-shadow: 0 20px 46px rgba(22, 32, 31, 0.2);
  backdrop-filter: blur(10px);
}

.document-label::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 16px;
  width: 4px;
  height: 32px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.8);
}

.document-label::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border: 5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.document-label--light {
  background: linear-gradient(90deg, rgba(226, 232, 232, 0.9), rgba(255, 255, 255, 0.8));
}

.document-label--green {
  background: linear-gradient(90deg, rgba(15, 63, 47, 0.96), rgba(31, 103, 73, 0.94));
}

.document-label--green,
.document-label--dark {
  color: #fff;
}

.document-label--dark {
  background: linear-gradient(90deg, rgba(22, 32, 31, 0.96), rgba(47, 59, 58, 0.94));
}

.calendar-card,
.stamp-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(22, 32, 31, 0.14);
  backdrop-filter: blur(12px);
}

.calendar-card {
  display: grid;
  position: absolute;
  left: 42px;
  bottom: 132px;
  width: 210px;
  min-height: 136px;
  padding: 20px 22px;
  align-content: center;
  color: var(--green);
}

.calendar-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.calendar-card strong {
  font-size: 21px;
  line-height: 1.2;
}

.stamp-card {
  position: absolute;
  right: 42px;
  bottom: 112px;
  display: grid;
  width: 162px;
  height: 162px;
  place-items: center;
  color: var(--blue);
  border: 9px double rgba(82, 111, 130, 0.68);
  border-radius: 50%;
  text-align: center;
}

.stamp-card__outer {
  position: absolute;
  top: 28px;
  left: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.stamp-card strong {
  color: var(--blue);
  font-size: 25px;
  line-height: 1.05;
  margin-top: 34px;
}

.audience {
  padding-top: 70px;
}

.audience__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.audience__list article {
  min-height: 230px;
  padding: 26px;
  background: #fff;
}

.audience__list h3,
.feature-rows h3,
.service-group h4,
.principles h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.28;
}

.audience__list p,
.feature-rows p,
.service-group li,
.team li,
.team p {
  color: var(--muted);
}

.advantages,
.services,
.team {
  background: var(--bg-soft);
}

.advantages__grid,
.team__grid,
.contacts__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: start;
}

.feature-rows,
.team__details {
  display: grid;
  gap: 14px;
}

.feature-rows article,
.service-group,
.team details,
.principles,
.request-form,
.guarantee__box,
.pricing__block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-rows article {
  padding: 24px;
}

.guarantee {
  padding: 72px 0;
}

.guarantee__box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, #143729 0%, #235f45 100%);
}

.guarantee__box h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.guarantee__box p,
.guarantee__box li {
  color: rgba(255, 255, 255, 0.82);
}

.services__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
}

.service-group {
  padding: 32px;
}

.service-group--accent {
  border-color: rgba(24, 77, 56, 0.22);
}

.service-group > h3 {
  margin: 0 0 28px;
  color: var(--green);
  font-size: 30px;
  line-height: 1.1;
}

.service-group article + article {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.service-group ul {
  margin-top: 12px;
}

.pricing__block {
  padding: 30px;
  overflow: hidden;
}

.pricing__block + .pricing__block {
  margin-top: 24px;
}

.pricing__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 22px;
}

.pricing__header h3 {
  margin: 0;
  color: var(--green);
  font-size: 30px;
}

.pricing__header p {
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 15px;
}

.table-wrap--compact table {
  min-width: 520px;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: #fff;
  background: var(--green);
  font-weight: 700;
}

thead th span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
}

tbody th {
  width: 210px;
  color: var(--green);
  background: #f7faf9;
  font-weight: 700;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.team details {
  padding: 0;
}

.team summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.team details p,
.team details ul {
  padding: 0 24px 22px;
}

.principles {
  padding: 24px;
  background: #fff;
}

.principles ul {
  columns: 2;
}

.contacts {
  background:
    linear-gradient(90deg, rgba(238, 245, 247, 0.82), transparent 58%),
    #fff;
}

.details-list {
  display: grid;
  gap: 18px;
}

.details-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.details-list dd {
  margin: 4px 0 0;
  font-weight: 600;
}

.request-form {
  position: relative;
  align-self: start;
  padding: 34px;
  border-color: rgba(220, 230, 227, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 252, 0.98));
  box-shadow: 0 24px 70px rgba(22, 32, 31, 0.11);
}

.request-form h3 {
  margin: 0 0 12px;
  font-size: 30px;
}

.request-form > p {
  margin-bottom: 24px;
  color: var(--muted);
}

.request-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 700;
}

.request-form input[type="text"],
.request-form input[type="tel"] {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.request-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 77, 56, 0.1);
}

.request-form input[aria-invalid="true"] {
  border-color: #9b2c2c;
  box-shadow: 0 0 0 4px rgba(155, 44, 44, 0.1);
}

.field-hint,
.field-error {
  margin-top: -2px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  color: #9b2c2c;
}

.field-error:empty {
  display: none;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.checkbox {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px !important;
  color: var(--muted) !important;
  font-size: 13px;
  font-weight: 500 !important;
}

.checkbox input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.checkbox .field-error {
  flex: 1 0 100%;
  margin-left: 30px;
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #9b2c2c;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #f7faf9;
}

.site-footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  color: var(--muted);
  font-size: 14px;
}

.legal {
  padding: 70px 0 110px;
  background: linear-gradient(180deg, #fff 0%, #f7faf9 100%);
}

.legal__container {
  max-width: 860px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal h1 {
  margin-top: 24px;
}

.legal h2 {
  margin: 42px 0 14px;
  font-size: 28px;
  line-height: 1.18;
}

.legal h3 {
  margin: 28px 0 12px;
  color: var(--green);
  font-size: 20px;
}

.legal p + p,
.legal p + ul,
.legal ul + p {
  margin-top: 14px;
}

.legal ul {
  margin-top: 12px;
  color: var(--muted);
}

.back-link {
  color: var(--green);
  font-weight: 800;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__content,
  .hero-visual,
  .audience__list article,
  .feature-rows article,
  .service-group,
  .pricing__block,
  .team details,
  .request-form {
    animation: fade-up 0.62s ease both;
  }

  .hero-visual {
    animation-delay: 0.08s;
  }

  .feature-rows article,
  .service-group,
  .pricing__block,
  .team details {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }

  .feature-rows article:hover,
  .service-group:hover,
  .pricing__block:hover,
  .team details:hover {
    border-color: rgba(24, 77, 56, 0.28);
    box-shadow: 0 16px 42px rgba(22, 32, 31, 0.08);
    transform: translateY(-2px);
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 3px;
    font-size: 13px;
  }

  .site-nav a {
    padding: 0 8px;
  }

  .hero__grid,
  .services__grid,
  .advantages__grid,
  .team__grid,
  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--sticky {
    position: static;
    margin-bottom: 34px;
  }

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

  .hero-visual {
    min-height: 560px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    padding: 8px 0;
  }

  .site-header__inner {
    width: min(100% - 24px, var(--container));
    min-height: 58px;
    padding: 8px;
  }

  .brand__text span {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav:not(.site-nav--legal) {
    position: fixed;
    inset: 76px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(22, 32, 31, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav:not(.site-nav--legal) a {
    min-height: 44px;
    padding: 0 12px;
  }

  .site-nav--legal {
    gap: 10px;
  }

  .section {
    padding: 66px 0;
  }

  .section--first {
    padding-top: 28px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.6vw, 40px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 520px;
    padding: 0;
  }

  .hero-visual__stage {
    position: absolute;
    inset: 0;
  }

  .document-labels {
    top: 56px;
    right: 24px;
    left: 24px;
    width: auto;
  }

  .document-label {
    min-height: 58px;
    padding-left: 48px;
    font-size: clamp(17px, 3.2vw, 23px);
  }

  .document-label::before {
    left: 24px;
    top: 15px;
    height: 30px;
  }

  .calendar-card {
    left: 28px;
    bottom: 112px;
    width: 188px;
    min-height: 126px;
    padding: 18px;
  }

  .stamp-card {
    right: 30px;
    bottom: 112px;
    width: 126px;
    height: 126px;
  }

  .stamp-card strong {
    font-size: 21px;
  }

  .audience__list,
  .guarantee__box,
  .pricing__header {
    grid-template-columns: 1fr;
  }

  .guarantee__box {
    padding: 28px;
  }

  .pricing__header {
    display: grid;
    gap: 12px;
  }

  .principles ul {
    columns: 1;
  }

  .site-footer__grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 18px;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .legal__container {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text span {
    display: none;
  }

  .site-nav--legal .button {
    display: none;
  }

  .hero__actions {
    display: grid;
  }

  .audience__list {
    grid-template-columns: 1fr;
  }

  .audience__list article {
    min-height: 0;
  }

  .service-group,
  .pricing__block,
  .request-form {
    padding: 22px;
  }

  .hero-visual {
    min-height: 500px;
    padding: 0;
  }

  .hero-visual__stage {
    position: absolute;
    inset: 0;
  }

  .hero-visual__image {
    object-position: 54% 50%;
  }

  .document-labels {
    top: 36px;
    right: 18px;
    left: 18px;
    width: auto;
    gap: 7px;
  }

  .document-label {
    min-height: 48px;
    padding: 0 44px 0 42px;
    font-size: 16px;
  }

  .document-label::before {
    left: 22px;
    top: 12px;
    height: 26px;
  }

  .document-label::after {
    right: 14px;
    width: 18px;
    height: 18px;
    border-width: 4px;
  }

  .calendar-card {
    left: 18px;
    right: 18px;
    bottom: 128px;
    width: auto;
    min-height: 106px;
    padding: 16px;
  }

  .calendar-card strong {
    font-size: 19px;
  }

  .stamp-card {
    right: 22px;
    bottom: 22px;
    width: 112px;
    height: 112px;
    border-width: 7px;
  }

  .stamp-card__outer {
    display: none;
  }

  th,
  td {
    padding: 14px;
  }
}
