/* ===== SEO BLOCK ===== */

.seo-block,
.block-text{
  margin-top: 80px;
  margin-bottom: 80px;
}

.seo-block__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ===== TEXT LIMIT ===== */
.seo-text-container {
  height: 150px;
  overflow: hidden;
  position: relative;
  transition: height 0.4s ease;
}

/* expanded */
.seo-text-container.expanded {
  height: auto;
}

/* fade effect */
.seo-text-container::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100px;
  background: linear-gradient(to bottom,rgba(255, 255, 255, 0),rgba(255, 255, 255, 1));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.seo-text-container.expanded::after {
  opacity: 0;
}

/* ===== BUTTON ===== */
.seo-block__button {
  margin-top: 24px;
  padding: 14px 28px;

  font-size: 16px;
  font-weight: 600;
  color: var(--c-deepblue);

  background-color: #d9dee3;
  border-radius: 999px;
  border: none;

  cursor: pointer;
  transition: background-color 0.2s ease;
}

.seo-block__button:hover {
  background-color: #c9d0d6;
}

.seo-block__button:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
}

/* ===== ADAPTIVE ===== */
@media (max-width: 768px) {
  .seo-block,
  .block-text{
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .seo-text-container {
    height: 180px;
  }

  .seo-block__button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .seo-text-container {
    height: 200px;
  }
}

/* =====   Breadcrumbs   ===== */

.breadcrumbs {
  padding: 16px 0 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  color: var(--c-deepblue);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin: 0 12px;
  color: var(--c-deepblue);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
}

.breadcrumbs__link {
  color: var(--c-deepblue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: var(--c-orange);
}

.breadcrumbs__link:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.breadcrumbs__current {
  color: var(--c-text);
}

@media (max-width: 991px) {
  .breadcrumbs {
    padding: 16px 0 0;
  }

  .breadcrumbs__item {
    font-size: 0.9375rem;
  }

  .breadcrumbs__item:not(:last-child)::after {
    margin: 0 10px;
    font-size: 1.25rem;
  }
}

/* ===== CTA banner ===== */
.cta-banner{
  margin: 80px 0;
}

.cta-banner__inner {
  position: relative;
  overflow: hidden;
  padding: 36px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ff5a22 0%, #f24e24 100%);
  isolation: isolate;
}

.cta-banner__inner::before,
.cta-banner__inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 280px;
  pointer-events: none;
  opacity: 0.7;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.cta-banner__inner::before {
  left: 0;
  background-position: left top;
  background-image: url("../icons/frame-102.svg");
}

.cta-banner__inner::after {
  right: 0;
  background-position: right top;
  background-image: url("../icons/frame-103.svg");
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner__title {
  margin-bottom: 16px;
  color: var(--c-white);
}

.cta-banner__text,
.cta-banner__text p {
  margin: 0 auto 24px;
  color: var(--c-white);
}

.cta-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 234px;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 24px;
  background-color: #E8F0F6;
  color: var(--c-deepblue);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.cta-banner__button:hover {
  background-color: #cfd7de;
}

.cta-banner__button:active {
  transform: translateY(1px);
}

@media (max-width: 1200px) {
  .cta-banner__inner {
    padding: 56px 24px;
    border-radius: 32px;
  }

  .cta-banner__inner::before,
  .cta-banner__inner::after {
    width: 180px;
    background-size: 150px auto;
  }

  .cta-banner__content {
    max-width: 680px;
  }

  .cta-banner__button {
    min-width: 280px;
    min-height: 72px;
  }
}

@media (max-width: 767px) {

  .cta-banner{
    margin: 32px 0;
  }

  .cta-banner__inner {
    padding: 40px 20px;
    border-radius: 28px;
  }

  .cta-banner__inner::before,
  .cta-banner__inner::after {
    width: 130px;
    background-size: 120px auto;
    opacity: 0.18;
  }

  .cta-banner__title {
    margin-bottom: 20px;
  }

  .cta-banner__text {
    margin-bottom: 28px;
  }

  .cta-banner__button {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    padding: 16px 24px;
  }
}

@media (max-width: 576px) {
  .cta-banner__inner::after {
    display: none;
  }
}

/* =====   CTA banner dealers variant   ===== */

.cta-banner--dealers .cta-banner__inner {
  position: relative;
  overflow: hidden;
  background: #AACFDF;
  isolation: isolate;
}

.cta-banner--dealers .cta-banner__title {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--c-deepblue);
}

.cta-banner--dealers .cta-banner__text {
  max-width: 840px;
  margin: 0 auto 36px;
}

.cta-banner--dealers .cta-banner__text p {
  margin-bottom: 12px;
  color: var(--c-deepblue);
}

.cta-banner--dealers .cta-banner__text p:last-child {
  margin-bottom: 0;
}

.cta-banner--dealers .cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-banner--dealers .cta-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 80px;
  padding: 16px 32px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.cta-banner--dealers .cta-banner__button:hover {
  transform: translateY(-1px);
}

.cta-banner--dealers .cta-banner__button:active {
  transform: translateY(0);
}

.cta-banner--dealers .cta-banner__button--primary {
  background-color: var(--c-orange);
  color: var(--c-white);
}

.cta-banner--dealers .cta-banner__button--primary:hover {
  background-color: var(--c-orange-h);
}

.cta-banner--dealers .cta-banner__button--secondary {
  background-color: #e8eef3;
  color: var(--c-deepblue);
}

.cta-banner--dealers .cta-banner__button--secondary:hover {
  background-color: #dce5ec;
}

/* ===== All products ===== */
.systems-overview{
  margin: 80px 0;
}

.systems-overview__title {
  text-align: center;
}

.systems-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.system-card {
  height: 100%;
}

.system-card__link {
  display: grid;
  padding: 8px;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  height: 100%;
  background-color: var(--c-blue-bg);
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.system-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(11, 38, 57, 0.08);
  border-color: #dbe4eb;
}

.system-card__link:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
}

.system-card__media {
  position: relative;
  min-height: 240px;
  background-color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.system-card__media::before {
  content: "";
  position: absolute;
  right: -25%;
  bottom: -77%;
  width: 150%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #AACFDF;
}

.system-card__image {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.system-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 16px;
}

.system-card__title {
  color: var(--c-black);
}

.system-card__button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 16px;
  background-color: var(--c-orange);
  color: var(--c-white);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
}

.system-card__link:hover .system-card__button,
.system-card__link:focus-visible .system-card__button {
  background-color: var(--c-orange-h);
}

@media (max-width: 1200px) {

  .systems-overview__grid {
    grid-template-columns: 1fr;
  }

  .system-card__link {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}


@media (max-width: 991px) {

  .systems-overview{
    margin: 32px 0;
  }

}

@media (max-width: 576px) {

  .system-card__link {
    grid-template-columns: 1fr;
  }

  .system-card__media {
    min-height: 260px;
  }

  .system-card__content {
    padding: 16px 0 0;
  }

  .system-card__title {
    margin-bottom: 8px;
  }

  .system-card__button {
    width: 100%;
  }
}


/* ======   Platform info   ====== */

.platform-info{
  margin: 80px 0;
}

.platform-info__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.platform-info__title {
  margin-bottom: 0;
}

.platform-info__text {
  max-width: 620px;
}

.platform-info__text p {
  margin-bottom: 0;
  color: var(--c-deepblue);
}

.platform-info__media {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
}

.platform-info__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .platform-info__header {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 44px;
  }
}

@media (max-width: 768px) {
  .platform-info{
    margin: 32px 0;
  }

  .platform-info__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .platform-info__text {
    max-width: none;
  }

  .platform-info__media {
    border-radius: 20px;
  }
}

@media (max-width: 576px) {
  .platform-info__header {
    margin-bottom: 28px;
  }

  .platform-info__text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .platform-info__media {
    border-radius: 16px;
  }
}

/* =====   Automation solutions   ===== */

.automation-solutions {
  padding: 80px 0;
  background-color: var(--c-white);
}

.automation-solutions__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.automation-solutions__header::before,
.automation-solutions__header::after {
  content: "";
  display: block;
  height: 1px;
  background-color: rgba(106, 122, 137, 0.24);
}

.automation-solutions__title {
  max-width: 410px;
  margin-bottom: 0;
  text-align: center;
}

.automation-solutions__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 22px;
}

.automation-solution-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.automation-solution-card__icon,
.automation-solution-card__content {
  display: flex;
  align-items: center;
  min-height: 64px;
  border-radius: 8px;
}

.automation-solution-card__icon {
  justify-content: center;
  padding: 8px;
  background-color: var(--c-orange-bg);
}

.automation-solution-card__icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.automation-solution-card__content {
  padding: 14px 8px;
  background-color: var(--c-blue-bg);
}

.automation-solution-card__title {
  margin-bottom: 0;
  color: #6A7A89;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 400;
}

.automation-solution-card--link {
  transition: transform 0.2s ease;
}

.automation-solution-card--link:hover {
  transform: translateY(-2px);
}

.automation-solution-card--link:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 4px;
}

@media (max-width: 1400px) {
  .automation-solutions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .automation-solutions {
    padding: 56px 0;
  }

  .automation-solutions__header {
    gap: 28px;
    margin-bottom: 40px;
  }

  .automation-solutions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .automation-solutions {
    padding: 40px 0;
  }

  .automation-solutions__header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 26px;
    margin-bottom: 32px;
  }

  .automation-solutions__header::before,
  .automation-solutions__header::after {
    width: 100%;
  }

  .automation-solutions__title {
    max-width: 360px;
  }

  .automation-solutions__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .automation-solution-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .automation-solution-card__icon,
  .automation-solution-card__content {
    min-height: 128px;
    border-radius: 18px;
  }

  .automation-solution-card__icon {
    padding: 16px;
  }

  .automation-solution-card__icon img {
    width: 64px;
    height: 64px;
  }

  .automation-solution-card__content {
    padding: 20px 16px;
  }

  .automation-solution-card__title {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .automation-solutions__header {
    gap: 18px;
  }

  .automation-solutions__title {
    max-width: 248px;
  }

  .automation-solutions__header::before,
  .automation-solutions__header::after {
    opacity: 0.9;
  }
}

/* =====   How we work   ===== */

.how-we-work {
  padding: 80px 0;
}

.how-we-work__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "intro card1"
    "card2 card4"
    "card3 card4";
  gap: 20px 22px;
  align-items: start;
}

.how-we-work__intro {
  grid-area: intro;
  max-width: 296px;
  padding-top: 4px;
}

.how-we-work__title {
  max-width: 240px;
  margin-bottom: 24px;
}

.how-we-work__description,
.how-we-work-card__text {
  color: #7a8ea2;
  font-size: 1.125rem;
  line-height: 1.6;
}

.how-we-work__description p,
.how-we-work-card__text p {
  margin-bottom: 0;
}

.how-we-work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 258px;
  padding: 28px 28px 0;
  border-radius: 30px;
  background-color: var(--c-blue-bg);
}

.how-we-work-card--1 {
  grid-area: card1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 38%);
  column-gap: 20px;
  min-height: 252px;
  padding: 26px 28px 0 36px;
}

.how-we-work-card--2 {
  grid-area: card2;
}

.how-we-work-card--3 {
  grid-area: card3;
}

.how-we-work-card--4 {
  grid-area: card4;
  min-height: 536px;
}

.how-we-work-card__content {
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.how-we-work-card__title {
  margin-bottom: 16px;
  font-size: clamp(2rem, 1.45rem + 1vw, 2.5rem);
  line-height: 1.15;
}

.how-we-work-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  margin-bottom: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: var(--c-orange-bg);
  color: var(--c-orange);
  font-size: 1.5rem;
  line-height: 1;
}

.how-we-work-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 188px;
  margin-top: 24px;
}

.how-we-work-card__shape {
  position: absolute;
  right: -72px;
  bottom: -86px;
  width: min(72%, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--c-orange);
  z-index: 1;
}

.how-we-work-card__image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 352px;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
}

.how-we-work-card--1 .how-we-work-card__content {
  display: flex;
  flex-direction: column;
  align-self: start;
  padding-bottom: 28px;
}

.how-we-work-card--1 .how-we-work-card__media {
  min-height: 100%;
  margin-top: 0;
}

.how-we-work-card--1 .how-we-work-card__shape {
  right: -78px;
  bottom: -126px;
  width: min(88%, 360px);
}

.how-we-work-card--1 .how-we-work-card__image {
  max-width: 312px;
}

.how-we-work-card--2 .how-we-work-card__image,
.how-we-work-card--3 .how-we-work-card__image {
  margin: 0 auto;
}

.how-we-work-card--2 .how-we-work-card__image {
  max-width: 332px;
}

.how-we-work-card--3 .how-we-work-card__image {
  max-width: 292px;
}

.how-we-work-card--4 .how-we-work-card__content {
  max-width: 420px;
}

.how-we-work-card--4 .how-we-work-card__media {
  min-height: 320px;
}

.how-we-work-card--4 .how-we-work-card__shape {
  right: -98px;
  bottom: -118px;
  width: min(90%, 470px);
}

.how-we-work-card--4 .how-we-work-card__image {
  max-width: 470px;
}

@media (max-width: 1399px) {
  .how-we-work__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 18px;
  }

  .how-we-work-card {
    border-radius: 28px;
  }

  .how-we-work-card__title {
    font-size: clamp(1.75rem, 1.35rem + 0.9vw, 2.25rem);
  }

  .how-we-work-card__badge {
    font-size: 1.25rem;
  }
}

@media (max-width: 1199px) {
  .how-we-work {
    padding: 64px 0;
  }

  .how-we-work__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "intro intro"
      "card1 card1"
      "card2 card4"
      "card3 card4";
  }

  .how-we-work__intro {
    max-width: 640px;
    padding-top: 0;
  }

  .how-we-work__title {
    max-width: 320px;
    margin-bottom: 20px;
  }

  .how-we-work-card {
    min-height: 244px;
    padding: 24px 24px 0;
  }

  .how-we-work-card--1 {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
    min-height: 236px;
    padding-left: 28px;
  }

  .how-we-work-card--4 {
    min-height: 504px;
  }
}

@media (max-width: 991px) {
  .how-we-work {
    padding: 48px 0;
  }

  .how-we-work__description,
  .how-we-work-card__text {
    font-size: 1rem;
  }

  .how-we-work-card__title {
    font-size: clamp(1.75rem, 1.4rem + 1vw, 2.125rem);
  }

  .how-we-work-card__badge {
    min-height: 42px;
    margin-top: 20px;
    padding: 8px 16px;
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .how-we-work {
    padding: 32px 0;
  }

  .how-we-work__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "card1"
      "card2"
      "card3"
      "card4";
    gap: 22px;
  }

  .how-we-work__intro,
  .how-we-work__title {
    max-width: none;
  }

  .how-we-work__title {
    margin-bottom: 18px;
  }

  .how-we-work-card,
  .how-we-work-card--1,
  .how-we-work-card--4 {
    display: flex;
    grid-template-columns: none;
    min-height: 456px;
    padding: 22px 22px 0;
    border-radius: 24px;
  }

  .how-we-work-card__content,
  .how-we-work-card--4 .how-we-work-card__content {
    max-width: none;
  }

  .how-we-work-card__title {
    margin-bottom: 14px;
    font-size: clamp(1.875rem, 1.55rem + 1.2vw, 2.25rem);
  }

  .how-we-work-card__media,
  .how-we-work-card--1 .how-we-work-card__media,
  .how-we-work-card--4 .how-we-work-card__media {
    min-height: 212px;
    margin-top: 18px;
  }

  .how-we-work-card__shape,
  .how-we-work-card--1 .how-we-work-card__shape,
  .how-we-work-card--4 .how-we-work-card__shape {
    right: -34px;
    bottom: -74px;
    width: min(92%, 320px);
  }

  .how-we-work-card__image,
  .how-we-work-card--1 .how-we-work-card__image,
  .how-we-work-card--2 .how-we-work-card__image,
  .how-we-work-card--3 .how-we-work-card__image,
  .how-we-work-card--4 .how-we-work-card__image {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .how-we-work-card,
  .how-we-work-card--1,
  .how-we-work-card--4 {
    min-height: 404px;
    padding: 20px 20px 0;
  }

  .how-we-work-card__title {
    font-size: 1.875rem;
  }

  .how-we-work-card__badge {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 1rem;
  }

  .how-we-work-card__media,
  .how-we-work-card--1 .how-we-work-card__media,
  .how-we-work-card--4 .how-we-work-card__media {
    min-height: 184px;
  }
}

/* =====   Automation benefits   ===== */

.automation-benefits {
  padding: 80px 0;
  background-color: var(--c-blue-bg);
}

.automation-benefits__top {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 72px;
}

.automation-benefits__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.automation-stat {
  min-height: 140px;
  padding: 28px 24px;
  border-radius: 20px;
  background-color: var(--c-white);
}

.automation-stat__value {
  display: block;
  margin-bottom: 18px;
  color: var(--c-orange);
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
}

.automation-stat__label {
  display: block;
  color: var(--c-text);
}

.automation-benefits__content {
  max-width: 660px;
}

.automation-benefits__title {
  margin-bottom: 32px;
}

.automation-benefits__text {
  margin-bottom: 0;
}

.automation-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.automation-feature {
  min-width: 0;
}

.automation-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 10px;
  background-color: var(--c-white);
}

.automation-feature__icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.automation-feature__title {
  margin-bottom: 16px;
  color: var(--c-orange);
  font-size: 1.25rem;
  line-height: 1.4;
}

.automation-feature__text {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .automation-benefits {
    padding: 64px 0;
  }

  .automation-benefits__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  .automation-benefits__grid {
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .automation-benefits__top {
    grid-template-columns: 1fr;
  }

  .automation-benefits__content {
    max-width: 720px;
  }

  .automation-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .automation-benefits {
    padding: 56px 0;
  }

  .automation-benefits__top {
    gap: 36px;
    margin-bottom: 48px;
  }

  .automation-benefits__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .automation-stat {
    min-height: 140px;
    padding: 28px 20px;
    border-radius: 18px;
  }

  .automation-stat__value {
    font-size: 3.5rem;
  }

  .automation-benefits__title {
    margin-bottom: 24px;
  }

  .automation-benefits__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .automation-feature__icon {
    margin-bottom: 20px;
  }
}

/* =====   Workflow process   ===== */

.workflow-process {
  padding: 80px 0;
}

.workflow-process__row {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.workflow-process__row--top {
  grid-template-columns: minmax(284px, 0.9fr) minmax(0, 1.9fr);
  margin-bottom: 24px;
}

.workflow-process__row--bottom {
  grid-template-columns: minmax(284px, 1fr) minmax(0, 1fr);
}

.workflow-process__intro {
  max-width: 284px;
  padding-top: 8px;
}

.workflow-process__title {
  margin-bottom: 24px;
}

.workflow-process__description {
  margin-bottom: 0;
  color: var(--c-text);
}

.workflow-process__stack {
  display: grid;
  gap: 24px;
}

.workflow-process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 28px;
  background-color: var(--c-blue-bg);
  isolation: isolate;
}

.workflow-process-card--equipment {
  min-height: 292px;
}

.workflow-process-card--platform,
.workflow-process-card--analytics {
  min-height: 292px;
}

.workflow-process-card--control {
  min-height: 608px;
}

.workflow-process-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 270px;
  padding: 24px;
}

.workflow-process-card__title {
  margin-bottom: 14px;
  color: var(--c-deepblue);
}

.workflow-process-card__text {
  margin-bottom: 24px;
  color: var(--c-text);
}

.workflow-process-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  margin-top: auto;
  padding: 8px 18px;
  border-radius: 999px;
  background-color: #ffe7df;
  color: var(--c-orange);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.workflow-process-card__media {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 56%;
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.workflow-process-card__image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.workflow-process-card--equipment .workflow-process-card__media {
  width: 48%;
}

.workflow-process-card--equipment .workflow-process-card__content {
  max-width: 250px;
}

.workflow-process-card--platform .workflow-process-card__media,
.workflow-process-card--analytics .workflow-process-card__media {
  width: 58%;
}

.workflow-process-card--control .workflow-process-card__media {
  width: 82%;
}

.workflow-process-card--control .workflow-process-card__content {
  max-width: 100%;
}

@media (max-width: 1200px) {
  .workflow-process__row--top {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.5fr);
  }

  .workflow-process__row--bottom {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-process-card--control {
    min-height: 560px;
  }

  .workflow-process-card__content {
    padding: 24px 20px 20px;
  }
}

@media (max-width: 991px) {
  .workflow-process {
    padding: 32px 0;
  }

  .workflow-process__row--top,
  .workflow-process__row--bottom {
    grid-template-columns: 1fr;
  }

  .workflow-process__row--top {
    margin-bottom: 20px;
  }

  .workflow-process__intro {
    max-width: none;
    padding-top: 0;
  }

  .workflow-process__stack {
    gap: 20px;
  }

  .workflow-process-card--equipment,
  .workflow-process-card--platform,
  .workflow-process-card--analytics,
  .workflow-process-card--control {
    min-height: 460px;
  }

  .workflow-process-card__content,
  .workflow-process-card--equipment .workflow-process-card__content,
  .workflow-process-card--control .workflow-process-card__content {
    max-width: none;
    padding: 24px;
  }

  .workflow-process-card__media,
  .workflow-process-card--equipment .workflow-process-card__media,
  .workflow-process-card--platform .workflow-process-card__media,
  .workflow-process-card--analytics .workflow-process-card__media,
  .workflow-process-card--control .workflow-process-card__media {
    width: 100%;
    height: 52%;
  }

  .workflow-process-card__image {
    right: 0;
    left: 0;
    margin: 0 0 0 auto;
  }
}

@media (max-width: 576px) {
  .workflow-process__title {
    margin-bottom: 20px;
  }

  .workflow-process-card--equipment,
  .workflow-process-card--platform,
  .workflow-process-card--analytics,
  .workflow-process-card--control {
    min-height: 458px;
    border-radius: 24px;
  }

  .workflow-process-card__content {
    padding: 22px 20px 18px;
  }

  .workflow-process-card__text {
    margin-bottom: 20px;
  }

  .workflow-process-card__step {
    min-height: 38px;
    padding: 8px 16px;
  }

  .workflow-process-card__media {
    height: 50%;
  }
}

/* =====   Featured solution hero   ===== */

.featured-solution-hero {
  padding: 80px 0;
}

.featured-solution-hero__inner {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border-radius: 0;
  background-color: #cfd6dc;
}

.featured-solution-hero__background {
  position: absolute;
  inset: 0;
}

.featured-solution-hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 26, 38, 0.16) 0%,
    rgba(12, 26, 38, 0.04) 38%,
    rgba(12, 26, 38, 0) 68%
  );
}

.featured-solution-hero__background-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.featured-solution-hero__card {
  position: relative;
  z-index: 1;
  max-width: 588px;
  margin: 194px 0 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(11, 38, 57, 0.5);
  color: var(--c-white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(11, 38, 57, 0.12);
}

.featured-solution-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-bottom: 16px;
  padding: 6px 8px;
  border: 2px solid var(--c-orange);
  border-radius: 10px;
  background-color: var(--c-white);
}

.featured-solution-hero__badge-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.featured-solution-hero__badge-text {
  color: var(--c-orange);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.featured-solution-hero__title {
  margin-bottom: 16px;
  color: var(--c-white);
}

.featured-solution-hero__subtitle {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--c-white);
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}

.featured-solution-hero__description {
  max-width: 640px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  line-height: 1.55;
}

.featured-solution-hero__description p{
  color: rgba(255, 255, 255, 0.96);
}

.featured-solution-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  min-height: 64px;
  padding: 16px 28px;
  border-radius: 999px;
  background-color: var(--c-orange);
  color: var(--c-white);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.featured-solution-hero__button:hover {
  background-color: var(--c-orange-h);
  transform: translateY(-1px);
}

.featured-solution-hero__button:active {
  transform: translateY(0);
}

.featured-solution-hero__button:focus-visible {
  outline: 2px solid var(--c-white);
  outline-offset: 3px;
}

@media (max-width: 1400px) {
  .featured-solution-hero__inner {
    min-height: 640px;
  }

  .featured-solution-hero__card {
    max-width: 588px;
    margin: 140px 0 0;
  }
}

@media (max-width: 1200px) {
  .featured-solution-hero__inner {
    min-height: 600px;
  }

  .featured-solution-hero__card {
    max-width: 588px;
    margin: 96px 0 0 48px;
    padding: 24px;
  }

  .featured-solution-hero__subtitle {
    font-size: 1.375rem;
  }
}

@media (max-width: 991px) {
  .featured-solution-hero {
    padding: 32px 0;
  }

  .featured-solution-hero__inner {
    min-height: 0;
    border-radius: 28px;
  }

  .featured-solution-hero__background {
    position: absolute;
    inset: 0;
  }

  .featured-solution-hero__background::after {
    background: linear-gradient(
      180deg,
      rgba(12, 26, 38, 0.16) 0%,
      rgba(12, 26, 38, 0.1) 100%
    );
  }

  .featured-solution-hero__card {
    max-width: none;
    margin: 32px;
  }
}

@media (max-width: 576px) {
  .featured-solution-hero__inner {
    border-radius: 0;
    min-height: 0;
  }

  .featured-solution-hero__card {
    margin: 32px 16px;
    padding: 18px 16px 22px;
    border-radius: 28px;
  }

  .featured-solution-hero__badge {
    gap: 10px;
    min-height: 42px;
    margin-bottom: 24px;
    padding: 8px 14px;
  }

  .featured-solution-hero__badge-text {
    font-size: 0.9375rem;
  }

  .featured-solution-hero__title {
    margin-bottom: 22px;
  }

  .featured-solution-hero__subtitle {
    margin-bottom: 18px;
    font-size: 1.125rem;
    line-height: 1.55;
  }

  .featured-solution-hero__description {
    margin-bottom: 32px;
  }

  .featured-solution-hero__button {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    font-size: 1rem;
  }
}

/* =====   Home hero   ===== */

.laundry-systems-hero {
  padding: 80px 0;
  background-color: #AACFDF;
}

.laundry-systems-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.laundry-systems-hero__content {
  max-width: 720px;
}

.laundry-systems-hero__title {
  margin-bottom: 16px;
  color: var(--c-deepblue);
}

.laundry-systems-hero__description {
  margin-bottom: 32px;
  color: var(--c-deepblue);
}

.laundry-systems-hero__description p{
  color: var(--c-deepblue);
}

.laundry-systems-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.laundry-systems-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  padding: 16px 24px;
  border: 0;
  border-radius: 30px;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.laundry-systems-hero__button:hover {
  transform: translateY(-1px);
}

.laundry-systems-hero__button:active {
  transform: translateY(0);
}

.laundry-systems-hero__button--primary {
  background-color: var(--c-orange);
  color: var(--c-white);
}

.laundry-systems-hero__button--primary:hover {
  background-color: var(--c-orange-h);
}

.laundry-systems-hero__button--secondary {
  background-color: #E7EFF4;
  color: var(--c-deepblue);
}

.laundry-systems-hero__button--secondary:hover {
  background-color: #d9e4eb;
}

.laundry-systems-hero__visual {
  position: relative;
  min-height: 452px;
}

.laundry-systems-hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.laundry-systems-hero__metric {
  position: absolute;
  left: 0;
  bottom: 80px;
  z-index: 2;
  min-width: 156px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--c-white);
  box-shadow: 0 16px 34px rgba(11, 38, 57, 0.08);
}

.laundry-systems-hero__metric-label {
  display: block;
  margin-bottom: 16px;
  color: var(--c-deepblue);
  font-size: 1rem;
  line-height: 1.4;
}

.laundry-systems-hero__metric-value {
  display: block;
  color: var(--c-orange);
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
}

.laundry-systems-hero__promo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  width: 128px;
  height: 128px;
  text-decoration: none;
}

.laundry-systems-hero__promo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: laundryPromoSpin 18s linear infinite;
  transform-origin: 50% 50%;
}

.laundry-systems-hero__promo:hover .laundry-systems-hero__promo-image,
.laundry-systems-hero__promo:focus-visible .laundry-systems-hero__promo-image,
.laundry-systems-hero__promo.is-paused .laundry-systems-hero__promo-image {
  animation-play-state: paused;
}

.laundry-systems-hero__promo:focus-visible {
  outline: 2px solid var(--c-deepblue);
  outline-offset: 6px;
  border-radius: 50%;
}

@keyframes laundryPromoSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1400px) {
  .laundry-systems-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .laundry-systems-hero__visual {
    min-height: 450px;
  }

  .laundry-systems-hero__metric {
    bottom: 48px;
  }
}

@media (max-width: 1200px) {
  .laundry-systems-hero__button {
    min-width: 240px;
  }

  .laundry-systems-hero__visual {
    min-height: 450px;
  }

  .laundry-systems-hero__metric {
    min-width: 100px;
    padding: 14px;
  }

  .laundry-systems-hero__metric-value {
    font-size: 3.5rem;
  }

  .laundry-systems-hero__promo {
    width: 136px;
    height: 136px;
  }
}

@media (max-width: 991px) {
  .laundry-systems-hero {
    padding: 32px 0;
  }

  .laundry-systems-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .laundry-systems-hero__visual {
    min-height: 0;
  }

  .laundry-systems-hero__metric {
    left: 0;
    bottom: 36px;
  }

  .laundry-systems-hero__promo {
    top: 10px;
    right: 0;
  }
}

@media (max-width: 576px) {

  .laundry-systems-hero__actions {
    gap: 16px;
  }

  .laundry-systems-hero__button {
    width: 100%;
    min-width: 0;
    min-height: 72px;
  }

  .laundry-systems-hero__visual {
    padding-top: 8px;
  }

  .laundry-systems-hero__metric {
    bottom: 10px;
    min-width: 90px;
    padding: 9px;
  }

  .laundry-systems-hero__metric-label {
    margin-bottom: 14px;
    font-size: 0.875rem;
  }

  .laundry-systems-hero__metric-value {
    font-size: 2.75rem;
  }

  .laundry-systems-hero__promo {
    top: 0;
    right: 0;
    width: 108px;
    height: 108px;
  }

  .laundry-systems-hero__promo-text {
    font-size: 7px;
    letter-spacing: 1.2px;
  }
}
