:root {
  --hero-brand: #0e6b5e;
  --hero-brand-deep: #0a4f45;
  --hero-soft: #e2efec;
  --hero-text: #15252a;
  --hero-secondary: #46555b;
  --hero-line: #e5e7e2;
  --hero-warm: #f6f1e8;
  --hero-page: #f5f6f3;
}

main {
  min-width: 0;
}

.page-container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 32px;
}

.hero-main {
  padding: 28px 0 76px;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}

.hero-copy {
  min-width: 0;
  padding: 82px 0 0;
}

.hero-eyebrow {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 6px 12px;
  border-radius: 99px;
  color: var(--hero-brand);
  background: var(--hero-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--hero-brand);
}

.hero-copy h1 {
  max-width: 610px;
  margin: 0 0 24px;
  color: #0c1215;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-title-city {
  display: block;
  white-space: nowrap;
}

.hero-description {
  max-width: 560px;
  margin: 0 0 48px;
  color: var(--hero-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: grid;
  min-height: 42px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 0;
  color: var(--hero-text);
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.hero-benefits img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 11px;
  border-radius: 10px;
  background: var(--hero-soft);
}

.hero-benefits span,
.hero-benefits strong,
.hero-benefits small {
  display: block;
}

.hero-benefits strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-benefits small {
  margin-top: 4px;
  color: var(--hero-secondary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 700px;
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 30px 70px -34px rgba(21, 37, 42, 0.34);
}

.hero-callout {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  width: auto;
  height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--hero-line);
  border-radius: 10px;
  color: var(--hero-text);
  background: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
  filter: drop-shadow(0 14px 22px rgba(15, 40, 40, 0.12));
}

.hero-callout svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--hero-brand);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-callout--color {
  top: 8%;
  left: 10%;
}

.hero-callout--time {
  top: 31%;
  left: 2%;
}

.lead-card {
  position: absolute;
  right: 0;
  bottom: -18px;
  z-index: 4;
  width: 360px;
  padding: 24px 24px 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 60px -20px rgba(15, 40, 40, 0.2), 0 8px 22px -8px rgba(15, 40, 40, 0.12);
}

.lead-card__title {
  margin: 0 0 14px;
  color: #0c1215;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.lead-form {
  display: grid;
  gap: 9px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field__label,
.contact-method__title {
  color: var(--hero-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.field__input,
.field__select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--hero-line);
  border-radius: 10px;
  color: var(--hero-text);
  background: #ffffff;
  font-family: inherit;
  font-size: 14px;
}

.field__input::placeholder {
  color: #7e888d;
  opacity: 1;
}

.field__input:focus,
.field__select:focus {
  border-color: var(--hero-brand);
  outline: none;
  box-shadow: 0 0 0 4px var(--hero-soft);
}

.select-wrap {
  position: relative;
}

.field__select {
  padding-right: 42px;
  appearance: none;
}

.select-wrap svg {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  color: var(--hero-secondary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-method {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  border: 0;
}

.contact-method__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.contact-option {
  position: relative;
  cursor: pointer;
}

.contact-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-option__label {
  display: flex;
  min-height: 26px;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: var(--hero-text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-option__label::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 1px solid #aeb8b4;
  border-radius: 50%;
  background: #ffffff;
  content: "";
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-option input:checked + .contact-option__label {
  color: var(--hero-brand-deep);
}

.contact-option input:checked + .contact-option__label::before {
  border-color: var(--hero-brand);
  background: var(--hero-brand);
}

.contact-option input:focus-visible + .contact-option__label::before {
  box-shadow: 0 0 0 4px var(--hero-soft);
}

.consent-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 12px 0 14px;
  color: var(--hero-secondary);
  font: 400 12px/1.4 "Inter", Arial, sans-serif;
  cursor: pointer;
}

.consent-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent-toggle__switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 42px;
  margin-top: 1px;
  border-radius: 999px;
  background: #e7e9e3;
  box-shadow: inset 0 1px 2px rgba(15, 40, 40, 0.08);
  transition: background-color 150ms ease, box-shadow 150ms ease;
}

.consent-toggle__switch::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 40, 40, 0.24);
  content: "";
  transition: transform 150ms ease;
}

.consent-toggle input:checked + .consent-toggle__switch {
  background: var(--hero-brand);
  box-shadow: 0 0 0 4px rgba(14, 107, 94, 0.12);
}

.consent-toggle input:checked + .consent-toggle__switch::before {
  transform: translateX(18px);
}

.consent-toggle input:focus-visible + .consent-toggle__switch {
  outline: 3px solid rgba(14, 107, 94, 0.22);
  outline-offset: 2px;
}

.consent-toggle a {
  color: var(--hero-brand);
  border-bottom: 1px solid rgba(14, 107, 94, 0.3);
  text-decoration: none;
}

.lead-card__submit {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: var(--hero-brand);
  box-shadow: 0 10px 22px rgba(14, 107, 94, 0.18);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.lead-card__submit:disabled {
  background: #c5ccc9;
  box-shadow: none;
  cursor: not-allowed;
}

.lead-card__submit:not(:disabled):hover,
.lead-card__submit:not(:disabled):focus-visible {
  background: var(--hero-brand-deep);
}

.lead-card__safe {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #7c868d;
  font-size: 12px;
  line-height: 1.4;
}

.lead-card__safe img {
  width: 18px;
  height: 18px;
}

.lead-card__safe span {
  min-width: 0;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--hero-brand-deep);
  font-size: 12px;
  font-weight: 600;
}

.form-status:empty {
  display: none;
}

@media (max-width: 1279.98px) and (min-width: 1024px) {
  .page-container {
    padding-inline: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 30px;
  }

  .hero-copy {
    padding-top: 64px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-benefits {
    gap: 14px;
  }

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

  .hero-callout {
    display: none;
  }

  .lead-card {
    right: 0;
    bottom: -44px;
    width: 340px;
  }
}

@media (max-width: 1023.98px) and (min-width: 768px) {
  .page-container {
    padding-inline: 24px;
  }

  .hero-main {
    padding: 40px 0 48px;
  }

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

  .hero-copy {
    max-width: 720px;
    padding: 0;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-description {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .hero-visual {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero-photo {
    width: 100%;
    max-width: 720px;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .lead-card {
    position: static;
    width: 100%;
    max-width: 480px;
    margin: 0;
  }

}

@media (max-width: 767.98px) {
  .page-container {
    padding-inline: 20px;
  }

  .hero-main {
    padding: 28px 0 36px;
  }

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

  .hero-copy {
    padding: 0;
  }

  .hero-eyebrow {
    display: inline-flex;
    width: auto;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-description {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-benefits li {
    min-height: 42px;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 0;
    font-size: 14px;
  }

  .hero-benefits img {
    width: 42px;
    height: 42px;
    padding: 11px;
  }

  .hero-visual {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 6;
    border-radius: 18px;
  }

  .hero-callout {
    display: none;
  }

  .lead-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 22px 20px 20px;
    border-radius: 16px;
  }

  .lead-card__title {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .lead-form {
    gap: 10px;
  }

  .field__input,
  .field__select {
    height: 48px;
    font-size: 16px;
  }

  .lead-card__submit {
    height: 52px;
  }

}

@media (max-width: 480.98px) {
  .page-container {
    padding-inline: 16px;
  }

  .hero-main {
    padding: 20px 0 28px;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-benefits li {
    justify-content: flex-start;
    min-height: 44px;
    text-align: left;
  }

  .hero-visual {
    min-width: 0;
  }

  .hero-photo {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }

  .lead-card {
    padding: 18px 16px 16px;
  }

}

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

/* Screen 11: shared footer */
.footer {
  scroll-margin-top: var(--header-height, 88px);
  padding: 46px 0 24px;
  border-top: 1px solid #e5e7e2;
  color: var(--hero-text);
  background: #ffffff;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1.55fr) 1fr 1.25fr 1.1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer__brand,
.footer__col {
  min-width: 0;
}

.footer__logo {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--hero-text);
  text-decoration: none;
}

.footer__logo-mark {
  display: block;
  width: 52px;
  height: 52px;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
}

.footer__logo-name {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.footer__logo-tagline {
  margin-top: 4px;
  color: var(--hero-secondary);
  font-size: 12px;
  line-height: 1.3;
}

.footer__about {
  max-width: 360px;
  margin: 0;
  color: var(--hero-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.footer__col-title {
  margin: 2px 0 14px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

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

.footer__links li + li {
  border-top: 1px solid #edf0ed;
}

.footer__links a,
.footer__soon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  color: var(--hero-text);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.footer__links a > span {
  width: 15px;
  height: 15px;
  color: var(--hero-brand);
  background: currentColor;
  transition: transform 150ms ease;
  -webkit-mask: url("./assets/footer/footer-arrow.svg") center / contain no-repeat;
  mask: url("./assets/footer/footer-arrow.svg") center / contain no-repeat;
}

.footer__links a:hover {
  color: var(--hero-brand);
}

.footer__links a:hover > span,
.footer__links a:focus-visible > span {
  transform: translateX(3px);
}

.footer__soon {
  display: flex;
  gap: 5px;
  color: #8a9397;
}

.footer__soon small {
  font-size: inherit;
}

.footer__contacts {
  display: grid;
  gap: 4px;
  font-style: normal;
}

.footer__contact {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-left: 30px;
  color: var(--hero-text);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.footer__contact::before {
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  color: var(--hero-brand);
  background: currentColor;
  content: "";
  -webkit-mask: var(--footer-contact-icon) center / contain no-repeat;
  mask: var(--footer-contact-icon) center / contain no-repeat;
}

.footer__contact--phone {
  --footer-contact-icon: url("./assets/footer/footer-phone.svg");
  font-weight: 600;
}

.footer__contact--mail {
  --footer-contact-icon: url("./assets/footer/footer-mail.svg");
}

.footer__contact--location {
  --footer-contact-icon: url("./assets/footer/footer-location.svg");
}

.footer__contact--clock {
  --footer-contact-icon: url("./assets/footer/footer-clock.svg");
}

a.footer__contact:hover {
  color: var(--hero-brand);
}

.footer__links--documents a {
  position: relative;
  padding-left: 30px;
}

.footer__links--documents a::before {
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  color: var(--hero-brand);
  background: currentColor;
  content: "";
  -webkit-mask: url("./assets/footer/footer-document.svg") center / contain no-repeat;
  mask: url("./assets/footer/footer-document.svg") center / contain no-repeat;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e5e7e2;
}

.footer__copy {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  color: var(--hero-secondary);
  font-size: 11px;
  line-height: 1.5;
}

.footer__requisite {
  white-space: nowrap;
}

.footer__sitemap {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--hero-brand);
  font-size: 12px;
  text-decoration: none;
}

.footer__sitemap span {
  transition: transform 150ms ease;
}

.footer__sitemap:hover span,
.footer__sitemap:focus-visible span {
  transform: translateX(3px);
}

@media (max-width: 1179.98px) {
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
  }

  .footer__about {
    max-width: 520px;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 36px 0 20px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
  }

  .footer__about {
    max-width: none;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer__copy {
    display: block;
  }

  .footer__copy > span {
    display: block;
    margin-top: 3px;
  }

  .footer__copy > span[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 480.98px) {
  .footer {
    padding: 28px 0 16px;
  }

  .footer__logo-mark {
    width: 48px;
    height: 48px;
  }

  .footer__logo-name {
    font-size: 18px;
  }

  .footer__about,
  .footer__links a,
  .footer__soon,
  .footer__contact {
    font-size: 12px;
  }
}

/* Screen 10: FAQ */
.faq {
  scroll-margin-top: calc(var(--header-height, 88px) + 12px);
  padding: 52px 0 48px;
  background: #f5f6f3;
}

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

.faq-heading {
  margin-bottom: 26px;
}

.faq-heading h2 {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.faq-heading p {
  margin: 0;
  color: var(--hero-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--hero-line);
  border-radius: 12px;
  background: #ffffff;
}

.faq-item + .faq-item {
  border-top: 1px solid #e5e7e2;
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 15px 18px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  width: 20px;
  height: 20px;
  color: var(--hero-brand);
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
  -webkit-mask: url("./assets/faq/faq-chevron.svg") center / contain no-repeat;
  mask: url("./assets/faq/faq-chevron.svg") center / contain no-repeat;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item__answer {
  margin: 0;
  padding: 0 54px 18px 18px;
  color: var(--hero-secondary);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 767.98px) {
  .faq {
    padding: 40px 0;
  }

  .faq-container {
    width: min(100% - 32px, 800px);
  }

  .faq-heading {
    margin-bottom: 22px;
  }

  .faq-heading h2 {
    font-size: 32px;
  }

  .faq-heading p {
    font-size: 14px;
  }

  .faq-item summary {
    min-height: 52px;
    padding: 13px 14px;
    font-size: 16px;
  }

  .faq-item__answer {
    padding: 0 48px 16px 14px;
    font-size: 14px;
  }
}

@media (max-width: 480.98px) {
  .faq {
    padding: 32px 0;
  }

  .faq-heading h2 {
    font-size: 28px;
  }

  .faq-heading p {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after {
    transition: none;
  }
}

/* Screen 9: quote form and contacts */
.contacts {
  scroll-margin-top: calc(var(--header-height, 88px) + 12px);
  padding: 52px 0 48px;
  overflow-x: clip;
  background: #f5f6f3;
}

.contacts__eyebrow {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--hero-brand);
  font-size: 13px;
  font-weight: 600;
}

.contacts__eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hero-brand);
  content: "";
}

.contacts__title {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.contacts__lead {
  max-width: 780px;
  margin: 0 0 28px;
  color: var(--hero-secondary);
  font-size: 17px;
  line-height: 1.5;
}

.contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(360px, 45fr);
  gap: 24px;
  align-items: start;
}

.quote-form,
.contact-panel {
  min-width: 0;
  border: 1px solid var(--hero-line);
  border-radius: 14px;
  background: #ffffff;
}

.quote-form {
  padding: 24px;
}

.quote-form__field {
  display: block;
  min-width: 0;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.quote-form__contact-method {
  margin: -6px 0 16px;
}

.quote-form__label {
  display: block;
  margin: 0 0 8px;
  color: var(--hero-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

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

.quote-choice {
  display: flex;
  gap: 9px;
  align-items: center;
  min-width: 0;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid var(--hero-line);
  border-radius: 8px;
  color: var(--hero-text);
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.quote-choice:hover {
  border-color: #80b5ac;
}

.quote-choice:has(input:checked) {
  border-color: var(--hero-brand);
  background: #eef7f4;
}

.quote-choice input {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--hero-brand);
}

.quote-choice span {
  min-width: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form__row .quote-form__field {
  margin-bottom: 16px;
}

.quote-form__input,
.quote-form__select,
.quote-form__textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--hero-line);
  border-radius: 8px;
  color: var(--hero-text);
  background: #ffffff;
  font: 400 14px/1.4 "Inter", Arial, sans-serif;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.quote-form__input,
.quote-form__select {
  height: 46px;
  padding: 0 13px;
}

.quote-form__select {
  padding-right: 38px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3e%3cpath fill='none' stroke='%237C868D' stroke-width='2' d='M1 1l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 13px center;
}

.quote-form__textarea {
  min-height: 82px;
  padding: 12px 13px;
  resize: vertical;
}

.quote-form__input:focus,
.quote-form__select:focus,
.quote-form__textarea:focus {
  border-color: var(--hero-brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 107, 94, 0.12);
}

.quote-form__input::placeholder,
.quote-form__textarea::placeholder {
  color: #8a949b;
}

.quote-form__dropzone {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding: 13px 16px;
  border: 1px dashed #80b5ac;
  border-radius: 9px;
  color: var(--hero-text);
  background: #f8fbfa;
  cursor: pointer;
}

.quote-form__dropzone:hover {
  border-color: var(--hero-brand);
  background: #eef7f4;
}

.quote-form__upload-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--hero-brand);
  background: currentColor;
  -webkit-mask: url("./assets/contacts/icon-upload.svg") center / contain no-repeat;
  mask: url("./assets/contacts/icon-upload.svg") center / contain no-repeat;
}

.quote-form__dropzone strong,
.quote-form__dropzone small {
  display: block;
}

.quote-form__dropzone strong {
  margin-bottom: 2px;
  font-size: 13px;
}

.quote-form__dropzone small {
  color: var(--hero-secondary);
  font-size: 12px;
}

.quote-consent {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin-bottom: 16px;
  cursor: pointer;
}

.quote-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quote-consent__switch {
  position: relative;
  display: block;
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: #d9dddb;
  transition: background 150ms ease;
}

.quote-consent__switch::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(10, 32, 30, 0.2);
  content: "";
  transition: transform 150ms ease;
}

.quote-consent input:checked + .quote-consent__switch {
  background: var(--hero-brand);
}

.quote-consent input:checked + .quote-consent__switch::after {
  transform: translateX(16px);
}

.quote-consent input:focus-visible + .quote-consent__switch {
  outline: 3px solid rgba(14, 107, 94, 0.22);
  outline-offset: 2px;
}

.quote-consent__text {
  color: var(--hero-secondary);
  font-size: 11px;
  line-height: 1.45;
}

.quote-consent__text a {
  color: var(--hero-brand);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
}

.quote-form__submit {
  width: 100%;
  min-height: 50px;
  color: #ffffff;
  background: var(--hero-brand);
}

.quote-form__submit:disabled {
  color: #ffffff;
  background: #c5ccc9;
  cursor: not-allowed;
}

.quote-form__status {
  margin: 10px 0 0;
  font-size: 12px;
}

.quote-form__status:empty {
  display: none;
}

.contact-panel {
  padding: 24px;
}

.contact-panel__block {
  display: flex;
  flex-direction: column;
}

.contact-panel__label {
  margin-bottom: 12px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-panel__messengers {
  display: grid;
  gap: 9px;
}

.contact-action {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 8px 12px;
  border: 1px solid var(--hero-line);
  border-radius: 999px;
  color: var(--hero-text);
  background: #ffffff;
  font: 600 14px/1.2 "Inter", Arial, sans-serif;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.contact-action:hover,
.contact-action:focus-visible {
  border-color: #80b5ac;
}

.contact-action__icon {
  width: 28px;
  height: 28px;
  background: url("./assets/contacts/icon-max.svg") center / contain no-repeat;
}

.contact-action__dot {
  justify-self: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hero-brand);
  box-shadow: 0 0 0 7px rgba(14, 107, 94, 0.1);
}

.contact-action__arrow {
  width: 16px;
  height: 16px;
  color: var(--hero-text);
  background: currentColor;
  -webkit-mask: url("./assets/contacts/icon-chevron-right.svg") center / contain no-repeat;
  mask: url("./assets/contacts/icon-chevron-right.svg") center / contain no-repeat;
}

.contact-panel__hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid var(--hero-line);
}

.contact-panel__address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-panel__addr-row {
  position: relative;
  display: block;
  min-height: 22px;
  padding-left: 32px;
  color: var(--hero-text);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.contact-panel__addr-row::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  color: var(--hero-brand);
  background: currentColor;
  content: "";
  -webkit-mask: var(--contact-icon) center / contain no-repeat;
  mask: var(--contact-icon) center / contain no-repeat;
}

.contact-panel__addr-row--location {
  --contact-icon: url("./assets/contacts/icon-location.svg");
}

.contact-panel__addr-row--clock {
  --contact-icon: url("./assets/contacts/icon-clock.svg");
}

.contact-panel__addr-row--mail {
  --contact-icon: url("./assets/contacts/icon-mail.svg");
}

.contact-panel__addr-row--delivery {
  --contact-icon: url("./assets/contacts/icon-delivery.svg");
}

a.contact-panel__addr-row:hover {
  color: var(--hero-brand);
}

.contact-panel__map {
  height: 240px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--hero-line);
  border-radius: 10px;
}

.contact-panel__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-panel__map--static {
  position: relative;
  height: auto;
  aspect-ratio: 430 / 241;
  background: #eef1ed;
}

.contact-panel__map-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-panel__map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel__map-marker {
  position: absolute;
  top: 27.5%;
  left: 78.5%;
  display: block;
  width: 48px;
  height: 48px;
  border: 3px solid #ffffff;
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(16, 35, 38, 0.28);
  transform: translate(-50%, -50%);
}

.contact-panel__map-marker::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  width: 12px;
  height: 12px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  border-radius: 0 0 4px 0;
  background: #0a4f45;
  content: "";
  transform: translateX(50%) rotate(45deg);
}

.contact-panel__map-marker img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.contact-panel__map-link:focus-visible {
  outline: 3px solid rgba(14, 107, 94, 0.32);
  outline-offset: 3px;
}

.max-corner {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 80;
  display: block;
  width: 105px;
  height: 50px;
  overflow: visible;
  filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.18));
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    filter 160ms ease;
}

.max-corner::after {
  position: absolute;
  top: -10px;
  right: -4px;
  display: flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #ff2e00;
  box-shadow: 0 8px 18px rgba(255, 46, 0, 0.28);
  content: "1";
  font: 700 13px/1 "Inter", Arial, sans-serif;
  pointer-events: none;
}

.max-corner:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 34px rgba(15, 23, 42, 0.24));
}

.max-corner:focus-visible {
  border-radius: 12px;
  outline: 3px solid rgba(46, 98, 255, 0.32);
  outline-offset: 4px;
}

.max-corner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.max-corner__icon {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1179.98px) {
  .contacts {
    padding: 44px 0;
  }

  .contacts__title {
    font-size: 36px;
  }

  .contacts__lead {
    font-size: 16px;
  }

  .contacts__grid {
    grid-template-columns: minmax(0, 60fr) minmax(320px, 40fr);
    gap: 18px;
  }

  .quote-form,
  .contact-panel {
    padding: 20px;
  }

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

@media (max-width: 900.98px) {
  .contacts__grid {
    grid-template-columns: 1fr;
  }

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

  .contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
    gap: 20px;
  }

  .contact-panel__hr {
    display: none;
  }

  .contact-panel__map {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 100%;
    min-height: 260px;
    margin-top: 0;
  }

  .contact-panel__map.contact-panel__map--static {
    height: auto;
    min-height: 0;
    aspect-ratio: 430 / 241;
    align-self: start;
  }
}

@media (max-width: 767.98px) {
  .contacts {
    padding: 40px 0;
  }

  .contacts__title {
    font-size: 32px;
  }

  .contacts__lead {
    margin-bottom: 24px;
    font-size: 14px;
  }

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

  .quote-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form__input,
  .quote-form__select,
  .quote-form__textarea {
    font-size: 16px;
  }

  .quote-form__input,
  .quote-form__select {
    min-height: 50px;
  }

  .contact-panel {
    display: block;
  }

  .contact-panel__hr {
    display: block;
  }

  .contact-panel__map {
    height: 220px;
    min-height: 0;
    margin-top: 20px;
  }

  .contact-panel__map.contact-panel__map--static {
    height: auto;
    aspect-ratio: 430 / 241;
  }

}

@media (max-width: 480.98px) {
  .contacts {
    padding: 32px 0;
  }

  .contacts__title {
    font-size: 28px;
  }

  .contacts__lead {
    font-size: 13px;
  }

  .quote-form,
  .contact-panel {
    padding: 16px;
  }

  .quote-form__choices {
    gap: 7px;
  }

  .quote-choice {
    padding: 7px 8px;
  }

  .quote-choice span {
    font-size: 11px;
  }

  .max-corner {
    right: 12px;
    bottom: 14px;
    width: 92px;
    height: 44px;
  }

  .max-corner::after {
    top: -9px;
    right: -3px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .max-corner,
  .max-corner * {
    transition: none;
  }
}

/* Screen 8: cases and reviews */
.cases {
  scroll-margin-top: calc(var(--header-height, 88px) + 12px);
  padding: 52px 0 44px;
  background: #ffffff;
}

.cases-heading {
  max-width: 850px;
  margin-bottom: 28px;
}

.cases-heading h2 {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.cases-heading p {
  max-width: 700px;
  margin: 0;
  color: var(--hero-secondary);
  font-size: 17px;
  line-height: 1.5;
}

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

.case-card,
.review-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--hero-line);
  border-radius: 12px;
  background: #ffffff;
}

.case-card {
  display: flex;
  flex-direction: column;
}

.case-card__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #eef2ef;
}

.case-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 16px;
}

.case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 13px;
}

.case-card__tag {
  padding: 5px 10px;
  border: 1px solid #bad4cf;
  border-radius: 999px;
  color: #0d665a;
  background: #f5faf8;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.case-card__tag--volume {
  border-color: transparent;
  color: var(--hero-text);
  background: #f1f3f2;
}

.case-card__text {
  margin: 0 0 12px;
  color: var(--hero-text);
  font-size: 13px;
  line-height: 1.48;
}

.case-card__text strong {
  font-weight: 700;
}

.case-card__result {
  position: relative;
  margin-top: auto;
  padding-left: 26px;
}

.case-card__result::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  color: var(--hero-brand);
  background: currentColor;
  content: "";
  -webkit-mask: url("./assets/cases/icon-result-check.svg") center / contain no-repeat;
  mask: url("./assets/cases/icon-result-check.svg") center / contain no-repeat;
}

.reviews-grid {
  margin-top: 16px;
}

.review-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px 14px;
  padding: 18px;
}

.review-card__stars,
.cases-summary__stars {
  display: flex;
  gap: 4px;
}

.review-card__stars {
  grid-column: 1 / -1;
}

.review-card__star,
.cases-summary__star {
  display: block;
  width: 18px;
  height: 18px;
  color: var(--hero-brand);
  background: currentColor;
  -webkit-mask: url("./assets/cases/icon-star.svg") center / contain no-repeat;
  mask: url("./assets/cases/icon-star.svg") center / contain no-repeat;
}

.review-card__avatar {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--hero-brand);
  background: var(--hero-soft);
  font-size: 18px;
  font-weight: 700;
}

.review-card__quote {
  margin: 0;
  color: var(--hero-text);
  font-size: 13px;
  line-height: 1.5;
}

.review-card__author {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--hero-line);
  color: var(--hero-secondary);
  font-size: 12px;
  line-height: 1.4;
}

.review-card__author strong {
  color: var(--hero-text);
  font-weight: 700;
}

.cases-summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 17px 20px;
  border-radius: 10px;
  background: #f5f6f3;
}

.cases-summary__rating {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--hero-secondary);
  font-size: 14px;
}

.cases-summary__rating strong {
  color: var(--hero-text);
  font-size: 16px;
}

.cases-summary__divider {
  width: 1px;
  height: 24px;
  background: #bfc9c6;
}

.cases-summary__more {
  padding: 0;
  border: 0;
  color: var(--hero-brand);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 5px;
  cursor: pointer;
}

.cases-summary__more span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.cases-summary__more:hover span,
.cases-summary__more:focus-visible span {
  transform: translateX(4px);
}

.cases-summary__more:focus-visible {
  border-radius: 2px;
  outline: 3px solid rgba(14, 107, 94, 0.22);
  outline-offset: 5px;
}

.cases-dialog {
  width: min(calc(100% - 32px), 430px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  border: 0;
  border-radius: 8px;
  color: var(--hero-text);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(16, 35, 38, 0.28);
}

.cases-dialog::backdrop {
  background: rgba(12, 24, 27, 0.58);
}

.cases-dialog__form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
}

.cases-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--hero-line);
  border-radius: 50%;
  color: var(--hero-secondary);
  background: #ffffff;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.cases-dialog__close:hover,
.cases-dialog__close:focus-visible {
  border-color: var(--hero-brand);
  color: var(--hero-brand);
}

.cases-dialog__title {
  max-width: 340px;
  margin: 0;
  padding-right: 28px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.cases-dialog__lead {
  margin: -6px 0 2px;
  color: var(--hero-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.cases-dialog__field {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
}

.cases-dialog__field input {
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #d9dfdc;
  border-radius: 8px;
  color: var(--hero-text);
  background: #ffffff;
  font: 400 16px/1.2 "Inter", Arial, sans-serif;
}

.cases-dialog__field input:focus {
  border-color: var(--hero-brand);
  outline: none;
  box-shadow: 0 0 0 4px var(--hero-soft);
}

.cases-dialog .contact-method__title {
  margin-bottom: 6px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
}

.cases-dialog__consent {
  margin: 2px 0 0;
}

.cases-dialog__submit {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--hero-brand);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.cases-dialog__submit:hover:not(:disabled),
.cases-dialog__submit:focus-visible:not(:disabled) {
  background: var(--hero-brand-deep);
}

.cases-dialog__submit:disabled {
  color: #7c8884;
  background: #dfe4e1;
  cursor: not-allowed;
}

.cases-dialog__status {
  margin: -4px 0 0;
  color: var(--hero-brand-deep);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.development-dialog__eyebrow {
  width: fit-content;
  margin-bottom: -4px;
  color: var(--hero-brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 1179.98px) {
  .cases {
    padding: 44px 0;
  }

  .cases-heading h2 {
    font-size: 36px;
  }

  .cases-heading p {
    font-size: 16px;
  }

  .case-card__body {
    padding: 14px;
  }

  .case-card__tag {
    padding: 4px 8px;
    font-size: 11px;
  }

  .case-card__text,
  .review-card__quote {
    font-size: 12px;
  }

  .review-card {
    padding: 16px;
  }
}

@media (max-width: 767.98px) {
  .cases {
    padding: 40px 0;
  }

  .cases-heading {
    margin-bottom: 24px;
  }

  .cases-heading h2 {
    font-size: 32px;
  }

  .cases-heading p {
    font-size: 14px;
  }

  .cases-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-card__text,
  .review-card__quote {
    font-size: 13px;
  }

  .cases-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 480.98px) {
  .cases-dialog {
    width: min(calc(100% - 24px), 430px);
    max-height: calc(100dvh - 24px);
  }

  .cases-dialog__form {
    gap: 14px;
    padding: 24px 20px 20px;
  }

  .cases-dialog__title {
    font-size: 23px;
  }
}

@media (max-width: 480.98px) {
  .cases {
    padding: 32px 0;
  }

  .cases-heading h2 {
    font-size: 28px;
  }

  .cases-heading p {
    font-size: 13px;
  }

  .cases-summary__rating {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Screen 7: order process */
.process {
  scroll-margin-top: calc(var(--header-height, 88px) + 12px);
  padding: 52px 0 44px;
  background: #f5f6f3;
}

.process-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.process-heading h2 {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.process-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--hero-secondary);
  font-size: 17px;
  line-height: 1.5;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-steps::before {
  position: absolute;
  top: 31px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: #b9d7d1;
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.process-step__badge {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
}

.process-step__card {
  flex: 1 1 auto;
  min-height: 214px;
  padding: 18px 16px;
  border: 1px solid var(--hero-line);
  border-radius: 12px;
  background: #ffffff;
}

.process-step__card h3 {
  margin: 0 0 9px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.process-step__card p {
  margin: 0;
  color: var(--hero-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.process-urgent {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid #eadac4;
  border-radius: 12px;
  background: #fff8ed;
}

.process-urgent__icon {
  width: 48px;
  height: 48px;
  color: #bd7727;
  background: currentColor;
  -webkit-mask: url("./assets/process/urgent-lightning.svg") center / contain no-repeat;
  mask: url("./assets/process/urgent-lightning.svg") center / contain no-repeat;
}

.process-urgent__copy h3 {
  margin: 0 0 4px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.process-urgent__copy p {
  margin: 0;
  color: var(--hero-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.process-urgent__button {
  min-height: 48px;
  padding-inline: 22px;
  border: 1px solid var(--hero-brand);
  color: #ffffff;
  background: var(--hero-brand);
  white-space: nowrap;
}

.process-manager {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 16px 0 0;
  color: var(--hero-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.process-manager__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--hero-brand);
  background: currentColor;
  -webkit-mask: url("./assets/process/manager-person.svg") center / contain no-repeat;
  mask: url("./assets/process/manager-person.svg") center / contain no-repeat;
}

@media (max-width: 1179.98px) {
  .process {
    padding: 44px 0;
  }

  .process-heading {
    margin-bottom: 28px;
  }

  .process-heading h2 {
    font-size: 36px;
  }

  .process-heading p {
    font-size: 16px;
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .process-step__badge {
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .process-step__card {
    min-height: 190px;
    padding: 16px;
  }
}

@media (max-width: 767.98px) {
  .process {
    padding: 40px 0;
  }

  .process-heading {
    margin-bottom: 26px;
  }

  .process-heading h2 {
    font-size: 32px;
  }

  .process-heading p {
    font-size: 14px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    position: relative;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 22px;
  }

  .process-step:not(:last-child)::after {
    position: absolute;
    top: 44px;
    bottom: 0;
    left: 21px;
    width: 2px;
    background: #b9d7d1;
    content: "";
  }

  .process-step__badge {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
  }

  .process-step__card {
    min-height: 0;
    padding: 0 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .process-step__card h3 {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .process-step__card p {
    font-size: 13px;
  }

  .process-urgent {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 4px;
    padding: 18px;
  }

  .process-urgent__icon {
    width: 40px;
    height: 40px;
  }

  .process-urgent__button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 480.98px) {
  .process {
    padding: 32px 0;
  }

  .process-heading h2 {
    font-size: 28px;
  }

  .process-heading p {
    font-size: 13px;
  }

  .process-urgent__copy h3 {
    font-size: 18px;
  }

  .process-urgent__copy p,
  .process-manager {
    font-size: 12px;
  }
}

/* Screen 5: customer segments */
.segments {
  scroll-margin-top: var(--header-height, 88px);
  padding: 48px 0;
  background: #ffffff;
}

.segments-heading {
  max-width: 920px;
  margin-bottom: 22px;
}

.segments-heading h2 {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.segments-heading p {
  max-width: 900px;
  margin: 0;
  color: var(--hero-secondary);
  font-size: 17px;
  line-height: 1.5;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.segment-card {
  display: grid;
  min-width: 0;
  height: 100%;
  grid-template-rows: 52px auto auto 1fr;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--hero-line);
  border-radius: 14px;
  color: var(--hero-text);
  background: #ffffff;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.segment-card:hover,
.segment-card:focus-visible {
  border-color: var(--hero-brand);
  box-shadow: 0 16px 32px -24px rgba(14, 107, 94, 0.42);
  transform: translateY(-2px);
}

.segment-card:focus-visible {
  outline: 3px solid rgba(14, 107, 94, 0.24);
  outline-offset: 3px;
}

.segment-card__icon {
  display: block;
  width: 52px;
  height: 52px;
  color: var(--hero-brand);
  background: currentColor;
  -webkit-mask: var(--segment-icon) center / contain no-repeat;
  mask: var(--segment-icon) center / contain no-repeat;
}

.segment-card__title {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.segment-card__description {
  margin: 0;
  color: var(--hero-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.segment-card__orders {
  align-self: end;
  margin: 2px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--hero-line);
  color: var(--hero-secondary);
  font-size: 12px;
  font-style: italic;
  line-height: 1.45;
}

.segment-card__orders strong {
  color: var(--hero-text);
  font-weight: 500;
}

@media (max-width: 1179.98px) {
  .segments {
    padding: 44px 0;
  }

  .segments-heading {
    margin-bottom: 18px;
  }

  .segments-heading h2 {
    font-size: 34px;
  }

  .segments-heading p {
    font-size: 15px;
  }

  .segments-grid {
    grid-auto-rows: 238px;
    gap: 14px;
  }

  .segment-card {
    grid-template-rows: 44px auto auto 1fr;
    gap: 6px;
    padding: 18px;
  }

  .segment-card__icon {
    width: 44px;
    height: 44px;
  }

  .segment-card__title {
    font-size: 18px;
  }

  .segment-card__description {
    font-size: 12px;
  }

  .segment-card__orders {
    padding-top: 10px;
    font-size: 11px;
  }
}

@media (max-width: 900.98px) and (min-width: 768px) {
  .segments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
}

@media (max-width: 767.98px) {
  .segments {
    padding: 40px 0;
  }

  .segments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
  }

  .segment-card {
    min-height: 220px;
    padding: 16px;
  }
}

@media (max-width: 400.98px) {
  .segments {
    padding: 32px 0;
  }

  .segments-heading h2 {
    font-size: 28px;
  }

  .segments-heading p {
    font-size: 14px;
  }

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

  .segment-card {
    min-height: 0;
    padding: 18px 16px;
  }
}

/* Screen 6: risk guarantees */
.risks {
  scroll-margin-top: var(--header-height, 88px);
  padding: 48px 0 44px;
  background: var(--hero-warm);
}

.risks-heading {
  max-width: 920px;
  margin-bottom: 20px;
}

.risks-heading h2 {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.risks-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--hero-secondary);
  font-size: 17px;
  line-height: 1.5;
}

.risks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 16px;
}

.risk-card {
  display: grid;
  min-width: 0;
  height: 100%;
  grid-template-rows: 44px auto 1fr;
  gap: 9px;
  padding: 20px;
  border: 1px solid var(--hero-line);
  border-radius: 14px;
  background: #ffffff;
}

.risk-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  color: var(--hero-brand);
  background: currentColor;
  -webkit-mask: var(--risk-icon) center / contain no-repeat;
  mask: var(--risk-icon) center / contain no-repeat;
}

.risk-card__fear {
  margin: 0;
  color: var(--hero-brand-deep);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.risk-card__solution {
  margin: 0;
  color: var(--hero-text);
  font-size: 13px;
  line-height: 1.5;
}

.risks-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(70, 85, 91, 0.2);
}

.risks-footer p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--hero-text);
  font-size: 14px;
  line-height: 1.45;
}

.risks-footer__check {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: var(--hero-brand);
  background: currentColor;
  -webkit-mask: url("./assets/risks/risk-footer-check.svg") center / contain no-repeat;
  mask: url("./assets/risks/risk-footer-check.svg") center / contain no-repeat;
}

.risks-footer a {
  flex: 0 0 auto;
  color: var(--hero-brand-deep);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
}

.risks-footer a span {
  display: inline-block;
  margin-left: 8px;
  border: 0;
  font-size: 20px;
  transition: transform 180ms ease;
}

.risks-footer a:hover span,
.risks-footer a:focus-visible span {
  transform: translateX(4px);
}

@media (max-width: 1179.98px) {
  .risks {
    padding: 44px 0;
  }

  .risks-heading h2 {
    font-size: 34px;
  }

  .risks-heading p {
    font-size: 15px;
  }

  .risks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 14px;
  }

  .risk-card {
    grid-template-rows: 40px auto 1fr;
    gap: 7px;
    padding: 18px;
  }

  .risk-card__icon {
    width: 40px;
    height: 40px;
  }

  .risk-card__fear {
    font-size: 16px;
  }

  .risk-card__solution {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .risks {
    padding: 40px 0;
  }

  .risks-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .risk-card {
    min-height: 210px;
    padding: 18px 16px;
  }

  .risks-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
  }
}

@media (max-width: 480.98px) {
  .risks {
    padding: 32px 0;
  }

  .risks-heading h2 {
    font-size: 28px;
  }

  .risks-heading p {
    font-size: 14px;
  }

  .risk-card {
    min-height: 0;
  }

  .risks-footer p,
  .risks-footer a {
    font-size: 13px;
  }
}

/* Screen 4: task packages */
.section-container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 32px;
}

.packages {
  scroll-margin-top: var(--header-height, 88px);
  padding: 56px 0 48px;
  background: var(--hero-page);
}

.packages-heading {
  max-width: 920px;
  margin-bottom: 24px;
}

.packages-heading h2 {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.packages-title-line {
  display: block;
}

.packages-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--hero-secondary);
  font-size: 17px;
  line-height: 1.5;
}

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

.package-card {
  display: flex;
  min-width: 0;
  min-height: 480px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--hero-line);
  border-radius: 16px;
  background: #ffffff;
}

.package-card__icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  color: var(--hero-brand);
  background: currentColor;
  -webkit-mask: var(--package-icon) center / contain no-repeat;
  mask: var(--package-icon) center / contain no-repeat;
}

.package-card__title {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.package-card__tagline {
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--hero-brand-deep);
  background: var(--hero-soft);
  font-size: 14px;
  font-style: italic;
  line-height: 1.35;
}

.package-card__list {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 16px 0 0;
  border-top: 1px solid var(--hero-line);
  list-style: none;
}

.package-card__list li {
  position: relative;
  padding-left: 28px;
  color: var(--hero-text);
  font-size: 14px;
  line-height: 1.4;
}

.package-card__list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--hero-brand);
  content: "";
  -webkit-mask: url("./assets/packages/list-check.svg") center / contain no-repeat;
  mask: url("./assets/packages/list-check.svg") center / contain no-repeat;
}

.package-card__button {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid var(--hero-brand);
  border-radius: 8px;
  color: #ffffff;
  background: var(--hero-brand);
  font: 600 15px/1.25 "Inter", Arial, sans-serif;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.package-card__button:hover,
.package-card__button:focus-visible {
  border-color: var(--hero-brand-deep);
  background: var(--hero-brand-deep);
  transform: translateY(-1px);
}

.package-card__button:focus-visible {
  outline: 3px solid rgba(14, 107, 94, 0.24);
  outline-offset: 3px;
}

.packages-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0;
  color: var(--hero-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.packages-note > span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--hero-brand);
  border-radius: 50%;
  color: var(--hero-brand);
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}

@media (max-width: 1279.98px) {
  .section-container {
    padding-inline: 24px;
  }
}

@media (max-width: 1179.98px) {
  .packages {
    padding: 48px 0 44px;
  }

  .packages-heading {
    margin-bottom: 20px;
  }

  .packages-heading h2 {
    font-size: 34px;
  }

  .packages-heading p {
    font-size: 15px;
  }

  .packages-grid {
    gap: 14px;
  }

  .package-card {
    min-height: 470px;
    padding: 18px;
    border-radius: 14px;
  }

  .package-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
  }

  .package-card__title {
    font-size: 20px;
  }

  .package-card__tagline {
    min-height: 57px;
    margin-bottom: 12px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .package-card__list {
    gap: 8px;
    padding-top: 12px;
  }

  .package-card__list li {
    padding-left: 24px;
    font-size: 12px;
  }

  .package-card__list li::before {
    width: 18px;
    height: 18px;
  }

  .package-card__button {
    min-height: 48px;
    padding-inline: 10px;
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .section-container {
    padding-inline: 20px;
  }

  .packages {
    padding: 40px 0;
  }

  .packages-heading h2 {
    font-size: 30px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .package-card {
    min-height: 0;
    padding: 20px;
  }

  .package-card__tagline {
    min-height: 0;
  }

  .packages-note {
    align-items: flex-start;
    margin-top: 16px;
    font-size: 13px;
  }
}

@media (max-width: 480.98px) {
  .section-container {
    padding-inline: 16px;
  }

  .packages {
    padding: 32px 0;
  }

  .packages-heading h2 {
    font-size: 27px;
  }

  .packages-heading p {
    font-size: 14px;
  }

  .package-card {
    padding: 18px 16px;
  }

  .package-card__icon {
    width: 50px;
    height: 50px;
  }

  .package-card__title {
    font-size: 20px;
  }

  .package-card__list li {
    font-size: 13px;
  }
}

/* Screen 3: print directions */
.directions {
  scroll-margin-top: calc(var(--header-height, 88px) + 12px);
  padding: 48px 0 44px;
  background: #ffffff;
}

.directions-container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 32px;
}

.directions-heading {
  max-width: 900px;
}

.directions-heading h2 {
  margin: 0 0 8px;
  color: var(--hero-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.directions-heading p {
  margin: 0 0 4px;
  color: var(--hero-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 16px;
}

.direction-card {
  position: relative;
  display: grid;
  min-width: 0;
  height: 100%;
  min-height: 0;
  grid-template-rows: 40px auto 1fr 22px;
  gap: 5px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--hero-line);
  border-radius: 14px;
  color: var(--hero-text);
  background: #ffffff;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.direction-card:hover,
.direction-card:focus-visible {
  border-color: var(--hero-brand);
  box-shadow: 0 16px 32px -24px rgba(14, 107, 94, 0.45);
  transform: translateY(-2px);
}

.direction-card:focus-visible {
  outline: 3px solid rgba(14, 107, 94, 0.24);
  outline-offset: 3px;
}

.direction-card__icon {
  display: block;
  width: 40px;
  height: 40px;
  color: var(--hero-brand);
  background: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

.direction-card__title {
  min-width: 0;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.direction-card__description {
  display: -webkit-box;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--hero-secondary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.direction-card__arrow {
  display: block;
  width: 22px;
  height: 22px;
  align-self: end;
  color: var(--hero-brand);
  background: currentColor;
  -webkit-mask: url("./assets/directions/arrow-right.svg") center / contain no-repeat;
  mask: url("./assets/directions/arrow-right.svg") center / contain no-repeat;
  transition: transform 180ms ease;
}

.direction-card:hover .direction-card__arrow,
.direction-card:focus-visible .direction-card__arrow {
  transform: translateX(4px);
}

@media (max-width: 1279.98px) {
  .directions-container {
    padding-inline: 24px;
  }
}

@media (max-width: 1179.98px) {
  .directions {
    padding: 44px 0 56px;
  }

  .directions-container {
    padding-inline: 24px;
  }

  .directions-heading {
    max-width: 800px;
  }

  .directions-heading h2 {
    font-size: 36px;
  }

  .directions-heading p {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .directions-grid {
    grid-auto-rows: 176px;
    gap: 14px;
  }

  .direction-card {
    grid-template-rows: 38px auto 1fr 22px;
    gap: 5px;
    padding: 16px;
    border-radius: 14px;
  }

  .direction-card__icon {
    width: 38px;
    height: 38px;
  }

  .direction-card__title {
    font-size: 18px;
  }

  .direction-card__description {
    font-size: 12px;
  }
}

@media (max-width: 900.98px) {
  .directions-container {
    padding-inline: 24px;
  }
}

@media (max-width: 767.98px) {
  .directions {
    padding: 40px 0 48px;
  }

  .directions-container {
    padding-inline: 20px;
  }

  .directions-heading {
    max-width: 560px;
  }

  .directions-heading h2 {
    font-size: 32px;
  }

  .directions-heading p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  .directions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 132px;
    gap: 10px;
  }

  .direction-card {
    grid-template-rows: 36px auto 1fr 20px;
    gap: 4px;
    padding: 14px;
  }

  .direction-card__icon {
    width: 36px;
    height: 36px;
  }

  .direction-card__description {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .direction-card__arrow {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480.98px) {
  .directions {
    padding: 32px 0 0;
  }

  .directions-container {
    padding-inline: 16px;
  }

  .directions-heading h2 {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1.15;
  }

  .directions-heading p {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.4;
  }

  .directions-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 108px;
    gap: 8px;
  }

  .direction-card {
    display: block;
    padding: 14px 40px 12px 68px;
  }

  .direction-card__icon {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 36px;
    height: 36px;
  }

  .direction-card__title {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.25;
  }

  .direction-card__description {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.4;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .direction-card__arrow {
    position: absolute;
    right: 14px;
    bottom: 10px;
    width: 20px;
    height: 20px;
  }
}
