/* Data Process Execution — 1280px layout */

:root {
  --color-text: #757575;
  --color-heading: #000000;
  --color-brand: #f28a2d;
  --color-brand-light: #fcac24;
  --max-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.page > main {
  flex: 1 0 auto;
}

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 1320px) {
  .container {
    padding-inline: 0;
  }
}

/* Typography */
.text-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.4;
}

.text-body {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(129deg, #fcac24 18%, rgba(237, 88, 41, 0) 100%), #f28a2d;
  box-shadow: 0.43px 7.99px 13px rgba(242, 138, 45, 0.4);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #f28a2d;
}

.btn-header {
  background: linear-gradient(127deg, #fcac24 0%, #f28a2d 100%);
  box-shadow: 2.6px 7.57px 13px rgba(242, 138, 45, 0.4);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-size: 16px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-link:hover {
  color: var(--color-brand);
}

/* Header — full width: logo | nav center | CTA right */
.site-header {
  width: 100%;
  background: #fff;
}

.site-header__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1.25rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1.5rem;
  height: 90px;
  min-height: 90px;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-header__menu {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-width: 0;
}

.site-nav {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.header-cta {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-close {
  display: none;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-heading);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bar + .nav-toggle__bar {
  margin-top: 6px;
}

.site-header--menu-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header--menu-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header--menu-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.lang-switcher a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.4rem;
  font-size: 14px;
  color: var(--color-text);
}

.lang-switcher img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.site-nav a {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--color-text);
  border-bottom: 4px solid transparent;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  border-bottom-color: var(--color-brand);
}

.site-nav a[aria-current="page"] {
  color: var(--color-heading);
  font-weight: 200;
  border-bottom-color: var(--color-brand);
}

.site-logo img {
  width: 128px;
  height: 40px;
}

/* Hero */
.hero {
  padding: 2rem 0 4rem;
}

.hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 2rem 3rem;
  min-height: 680px;
}

.hero__content {
  position: relative;
  max-width: 560px;
  padding-right: 1rem;
}

.hero__decor-dots {
  position: absolute;
  left: -0.5rem;
  top: -1.5rem;
  width: 74px;
  z-index: 0;
  pointer-events: none;
}

.hero__title,
.hero__text,
.hero__content > .btn-primary {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(2.25rem, 3.5vw, 48px);
  margin: 0 0 1rem;
}

.hero__text {
  margin: 0 0 1.5rem;
}

.hero__visual {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 600px;
}

.hero__decor-cubes {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 90%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.hero__image {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: min(100%, 780px);
  height: auto;
}

/* Services */
.services {
  padding: 2rem 0 4rem;
}

.services__title {
  font-size: 48px;
  text-align: center;
  margin: 0 0 2.5rem;
}

.services__panel {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 71px rgba(119, 128, 208, 0.2);
  padding: 3rem 2.5rem 3.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 380px;
  padding: 2rem 1.75rem;
  border-radius: 10px;
  background: #fff;
  overflow: visible;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card--it::before {
  background: linear-gradient(135deg, rgba(255, 177, 116, 0.55) 0%, rgba(34, 234, 170, 0.14) 48%, #ffffff 100%);
}

.service-card--data::before {
  background: linear-gradient(135deg, rgba(6, 222, 153, 0.45) 0%, rgba(97, 179, 232, 0.2) 48%, #ffffff 100%);
}

.service-card--web::before {
  background: linear-gradient(135deg, rgba(255, 177, 116, 0.42) 0%, rgba(62, 180, 253, 0.2) 48%, #ffffff 100%);
}

.service-card--software::before {
  background: linear-gradient(135deg, rgba(179, 30, 111, 0.32) 0%, rgba(2, 128, 215, 0.18) 48%, #ffffff 100%);
}

.service-card__icon-frame {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.1);
}

.service-card__icon-frame--it::before { background: #ee5a5a; }
.service-card__icon-frame--data::before { background: #06de99; }
.service-card__icon-frame--web::before { background: #f98831; }
.service-card__icon-frame--software::before { background: #b31e6f; }

.service-card__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  max-width: none;
  display: block;
}

.service-card__title {
  font-size: 20px;
  margin: 0 0 0.75rem;
}

.service-card__text {
  margin: 0 0 1.5rem;
  flex: 1;
}

/* Illustration break */
.illustration-break {
  padding: 1rem 0 3rem;
}

.illustration-break__stage {
  position: relative;
  padding: 3rem 0 2rem;
}

.illustration-break__decor-tl,
.illustration-break__decor-br {
  position: absolute;
  width: 200px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.illustration-break__decor-tl {
  top: 0;
  left: -2rem;
}

.illustration-break__decor-br {
  bottom: 0;
  right: -2rem;
}

.illustration-break__card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 71px rgba(119, 128, 208, 0.2);
  padding: 2.5rem 5rem;
  overflow: hidden;
}

.illustration-break__dots-left,
.illustration-break__dots-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 74px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.illustration-break__dots-left {
  left: 1.5rem;
}

.illustration-break__dots-right {
  right: 1.5rem;
}

.illustration-break__photo {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}

/* Values */
.values {
  padding: 0 0 5rem;
}

.values .container {
  display: block;
}

.values__title {
  font-size: 48px;
  margin: 0 0 2.5rem;
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}

.value-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.5rem;
  align-items: start;
}

.value-card__icon-wrap {
  grid-row: 1 / span 2;
  grid-column: 1;
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00563b;
  overflow: hidden;
}

.value-card__icon {
  width: 50px;
  height: 50px;
  max-width: none;
  display: block;
}

.value-card__title {
  font-size: 20px;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
}

.value-card__text {
  margin: 0;
  grid-column: 2;
}

/* Footer */
.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 1.75rem 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 16px;
  color: var(--color-text);
}

.site-footer__links {
  display: flex;
  gap: 1.5rem;
}

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__panel {
  position: relative;
  width: min(100%, 480px);
  padding: 2rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--color-heading);
  font-size: 1.25rem;
  line-height: 1;
}

.contact-modal__title {
  margin: 0 0 1.25rem;
  font-size: 24px;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 14px;
  color: var(--color-heading);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__success {
  text-align: center;
}

.contact-form__success-text {
  margin: 0 0 1.5rem;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-heading);
}

.contact-form[hidden],
.contact-form__success[hidden] {
  display: none;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background: #fff;
  color: #116dff;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "left cta"
      "nav nav";
    row-gap: 0.75rem;
    height: auto;
    min-height: 90px;
    padding-block: 0.75rem;
  }

  .site-header__left { grid-area: left; }

  .site-header__menu {
    display: contents;
  }

  .nav-close {
    display: none;
  }

  .site-nav {
    grid-area: nav;
    justify-self: center;
    gap: 2rem;
  }

  .header-cta {
    grid-area: cta;
    justify-self: end;
  }

  .nav-toggle {
    display: none;
    grid-area: cta;
  }

  .hero__stage {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }

  .hero__content {
    max-width: none;
    padding-right: 0;
  }

  .hero__decor-dots {
    display: none;
  }

  .hero__visual {
    min-height: auto;
    justify-content: center;
  }

  .hero__decor-cubes {
    width: 70%;
    right: 50%;
    transform: translate(50%, -50%);
  }

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

  .services__panel {
    padding: 2rem 1.25rem;
  }

  .service-card {
    min-height: auto;
  }

  .illustration-break__decor-tl,
  .illustration-break__decor-br {
    width: 120px;
  }

  .illustration-break__card {
    padding: 1.5rem 1rem;
  }

  .illustration-break__dots-left,
  .illustration-break__dots-right {
    display: none;
  }

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

@media (max-width: 768px) {
  .site-header {
    position: relative;
    z-index: 101;
  }

  .site-header::before {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header__inner {
    display: flex;
    flex-wrap: nowrap;
    height: 90px;
    min-height: 90px;
    padding-block: 0;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
  }

  .site-header--menu-open .nav-toggle {
    visibility: hidden;
    pointer-events: none;
  }

  .site-header__menu {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 5rem 1.5rem 2rem;
    background: #fff;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

  .site-header--menu-open .site-header__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--color-heading);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
  }

  .site-nav {
    flex: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    border-bottom: none;
    border-left: 4px solid transparent;
    padding: 1rem 0;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    border-bottom-color: transparent;
    border-left-color: var(--color-brand);
  }

  .header-cta {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
  }

  .lang-switcher {
    justify-content: center;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .btn-primary,
  .btn-header {
    width: auto;
    min-width: 160px;
    padding-inline: 1.25rem;
  }

  .services__title,
  .values__title,
  .page-section__title,
  .about-intro__title {
    font-size: clamp(2rem, 6vw, 48px);
  }
}

/* Inner pages */
.about-intro {
  padding: 3rem 0 5rem;
}

.about-intro__stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem 4rem;
  align-items: center;
}

.about-intro__visual {
  position: relative;
}

.about-intro__image {
  width: auto;
  max-width: 457px;
  height: auto;
  margin-inline: auto;
}

.about-intro__title {
  font-size: 48px;
  margin: 0 0 1.5rem;
}

.about-intro__text {
  margin: 0 0 1rem;
}

.about-intro__text:last-of-type {
  margin-bottom: 2rem;
}

.legal-page {
  padding: 3rem 0 5rem;
}

.legal-page__inner {
  max-width: 920px;
}

.legal-page__title {
  font-size: 48px;
  margin: 0 0 2rem;
}

.legal-page__heading {
  font-size: 20px;
  margin: 2rem 0 0.75rem;
}

.legal-page__text {
  margin: 0 0 1rem;
}

.legal-page__list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-page__list li {
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-section {
  padding: 3.5rem 0;
  scroll-margin-top: 6rem;
}

.page-section__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem 4rem;
  align-items: center;
}

.page-section__visual {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-section--reverse .page-section__visual {
  order: 1;
}

.page-section--reverse .page-section__content {
  order: 2;
}

.page-section__title {
  font-size: 48px;
  margin: 0 0 1.25rem;
}

.page-section__subtitle {
  font-size: 32px;
  text-align: center;
  margin: 0 0 2rem;
}

.page-section__text {
  margin: 0 0 1rem;
}

.page-section__image {
  width: auto;
  max-width: 100%;
  height: auto;
}

.feature-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.75rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
}

/* What we offer */
.offer-section {
  padding: 2rem 0 4rem;
}

.offer-section__title {
  font-size: 32px;
  text-align: center;
  margin: 0 0 2.5rem;
}

.offer-diagram {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding-top: 1rem;
}

.offer-diagram__curve {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
}

.offer-diagram__items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-diagram__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.offer-diagram__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
}

.offer-diagram__label {
  font-size: 16px;
  line-height: 1.35;
  max-width: 9rem;
}

.offer-diagram__figure {
  margin: 1.5rem 0 0;
  text-align: center;
}

.offer-diagram__figure img {
  width: auto;
  max-width: min(100%, 980px);
  height: auto;
  margin-inline: auto;
}

.offer-section__note {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  margin-top: 3rem;
}

.info-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0 1rem;
  align-items: start;
}

.info-card__icon-wrap {
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00563b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.info-card__icon {
  width: 50px;
  height: 50px;
  display: block;
}

.info-card__title {
  font-size: 20px;
  margin: 0 0 0.75rem;
}

.info-card__text {
  margin: 0;
  grid-column: 2;
}

.focus-section {
  margin: 4rem 0 5rem;
}

.focus-panel {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 71px rgba(119, 128, 208, 0.2);
  padding: 3rem 2.5rem 3.5rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2rem;
}

.focus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 200px;
  padding: 1.75rem 1.5rem;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.focus-card > * {
  position: relative;
  z-index: 1;
}

.focus-card--01::before {
  background: linear-gradient(135deg, rgba(255, 241, 231, 0.95) 0%, rgba(223, 251, 242, 0.5) 48%, #ffffff 100%);
}

.focus-card--02::before {
  background: linear-gradient(135deg, rgba(215, 249, 238, 0.95) 0%, rgba(233, 244, 252, 0.55) 48%, #ffffff 100%);
}

.focus-card--03::before {
  background: linear-gradient(135deg, rgba(255, 241, 230, 0.95) 0%, rgba(223, 251, 242, 0.5) 48%, #ffffff 100%);
}

.focus-card--04::before {
  background: linear-gradient(135deg, rgba(243, 220, 231, 0.95) 0%, rgba(227, 244, 255, 0.55) 48%, #ffffff 100%);
}

.focus-card--05::before {
  background: linear-gradient(135deg, rgba(241, 215, 229, 0.95) 0%, rgba(250, 251, 253, 0.55) 48%, #ffffff 100%);
}

.focus-card--06::before {
  background: linear-gradient(135deg, rgba(242, 220, 231, 0.95) 0%, rgba(227, 245, 255, 0.55) 48%, #ffffff 100%);
}

.focus-card__icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00563b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.focus-card__icon {
  width: 42px;
  height: 42px;
  display: block;
}

.focus-card__title {
  font-size: 20px;
  margin: 0 0 0.75rem;
}

.focus-card__text {
  margin: 0;
}

.dev-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  margin-top: 2rem;
}

.dev-steps__col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.dev-steps__figure {
  margin: 0;
  align-self: center;
}

.dev-steps__figure img {
  width: auto;
  max-width: 340px;
  height: auto;
  margin-inline: auto;
}

.dev-step__num {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 0.35rem;
}

.dev-step__title {
  font-size: 20px;
  margin: 0 0 0.5rem;
}

.dev-step__text {
  margin: 0;
}

@media (max-width: 1100px) {
  .about-intro__stage,
  .page-section__stage {
    grid-template-columns: 1fr;
  }

  .page-section--reverse .page-section__visual,
  .page-section--reverse .page-section__content {
    order: unset;
  }

  .offer-diagram__curve {
    display: none;
  }

  .offer-diagram__items {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-panel {
    padding: 2rem 1.5rem 2.5rem;
  }

  .focus-section {
    margin-bottom: 3.5rem;
  }

  .dev-steps {
    grid-template-columns: 1fr;
  }

  .dev-steps__figure {
    order: -1;
  }
}
