/**
 * CS TECNA Full Layout Widget
 * Classi isolate: mlCsTecna*
 */

.mlCsTecnaFullLayout,
.mlCsTecnaFullLayout * {
  box-sizing: border-box;
}

.mlCsTecnaFullLayout {
  --ml-cs-primary: #00517c;
  --ml-cs-primary-dark: #00456c;
  --ml-cs-text: #171717;
  --ml-cs-muted: #575757;
  --ml-cs-light: #f5f5f3;
  --ml-cs-white: #ffffff;
  --ml-cs-pattern: none;

  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ml-cs-text);
  font-family: "Google Sans Flex", "Google Sans", Arial, sans-serif;
  line-height: 1.25;
}

.mlCsTecnaFullLayout a {
  text-decoration: none;
}

.mlCsTecnaFullLayout p,
.mlCsTecnaFullLayout h1,
.mlCsTecnaFullLayout h2,
.mlCsTecnaFullLayout h3 {
  margin: 0;
}

.mlCsTecnaFullLayout__inner {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mlCsTecnaFullLayout__logo {
  display: block;
  width: 48px;
  max-height: 35px;
  height: auto;
  object-fit: contain;
}

.mlCsTecnaFullLayout__logoText {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 35px;
  color: var(--ml-cs-primary);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.mlCsTecnaFullLayout__kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 26px;
  color: var(--ml-cs-primary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1.1;
  text-transform: uppercase;
}

.mlCsTecnaFullLayout__kicker--white {
  color: var(--ml-cs-white);
}

.mlCsTecnaFullLayout__kicker--white .mlCsTecnaFullLayout__logoText {
  color: var(--ml-cs-primary);
}


.mlCsTecnaFullLayout__kicker--center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.mlCsTecnaFullLayout__sectionTitle {
  color: var(--ml-cs-text);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0;
}

.mlCsTecnaFullLayout__sectionTitle--white {
  color: var(--ml-cs-white);
}

.mlCsTecnaFullLayout__sectionTitle--center {
  text-align: center;
}

.mlCsTecnaFullLayout__textLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--ml-cs-text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition: opacity .25s ease, transform .25s ease;
}

.mlCsTecnaFullLayout__textLink span {
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}

.mlCsTecnaFullLayout__textLink:hover span {
  transform: translateX(4px);
}

.mlCsTecnaFullLayout__textLink--white {
  color: var(--ml-cs-white);
}

.mlCsTecnaFullLayout__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 12px 28px;
  border-radius: 0;
  background: var(--ml-cs-primary-dark);
  color: var(--ml-cs-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background-color .25s ease, transform .25s ease;
}

.mlCsTecnaFullLayout__button:hover {
  color: var(--ml-cs-white);
  background: #003754;
  transform: translateY(-1px);
}

/* HERO */

.mlCsTecnaHero {
  position: relative;
  width: 100%;
  min-height: 760px;
  background-color: #b9b9b9;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.mlCsTecnaHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .24);
  z-index: 1;
}

.mlCsTecnaHero__inner {
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  padding: 130px 64px 56px;
}

.mlCsTecnaHero__content {
  width: min(760px, 100%);
  color: var(--ml-cs-white);
}

.mlCsTecnaHero__title {
  color: var(--ml-cs-white);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 650;
  max-width: 880px;
  margin: 0 0 34px;
}

.mlCsTecnaHero__lead,
.mlCsTecnaHero__copy {
  color: var(--ml-cs-white);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.45;
  max-width: 1120px;
  opacity: .96;
}

.mlCsTecnaHero__copy {
  max-width: 1180px;
  margin-top: 22px;
}

/* COMPLEXITY */

.mlCsTecnaComplexity {
  position: relative;
  width: 100%;
  min-height: 430px;
  color: var(--ml-cs-white);
  background-color: var(--ml-cs-primary);
  background-size: cover;
  background-position: center;
}

.mlCsTecnaComplexity::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 81, 124, .78);
  z-index: 1;
}

.mlCsTecnaComplexity__inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(220px, 32%) 1fr;
  align-items: center;
  gap: 90px;
  padding: 72px 64px;
}

.mlCsTecnaComplexity__brand {
  align-self: center;
  color: var(--ml-cs-white);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.22;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.mlCsTecnaComplexity__brandLogo {
  margin-bottom: 24px;
}

.mlCsTecnaComplexity__content {
  width: min(660px, 100%);
}

.mlCsTecnaComplexity__text {
  margin-top: 26px;
  color: var(--ml-cs-white);
  font-size: 14px;
  line-height: 1.45;
}

.mlCsTecnaComplexity__text p + p {
  margin-top: 16px;
}

.mlCsTecnaComplexity__content .mlCsTecnaFullLayout__textLink {
  margin-top: 26px;
}

/* HISTORY */

.mlCsTecnaHistory {
  position: relative;
  width: 100%;
  color: var(--ml-cs-white);
  background-color: var(--ml-cs-primary);
  background-image: var(--ml-cs-pattern);
  background-size: 520px auto;
  background-repeat: repeat;
  background-position: center;
}

.mlCsTecnaHistory::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 81, 124, .92);
  z-index: 1;
}

.mlCsTecnaHistory__inner {
  padding: 80px 64px 90px;
}

.mlCsTecnaHistory__content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.mlCsTecnaHistory__text {
  margin-top: 30px;
  color: var(--ml-cs-white);
  font-size: 14px;
  line-height: 1.55;
}

.mlCsTecnaHistory__text p + p {
  margin-top: 18px;
}

/* PROCESS */

.mlCsTecnaProcess {
  position: relative;
  width: 100%;
  background-color: var(--ml-cs-light);
  background-image: var(--ml-cs-pattern);
  background-size: 520px auto;
  background-repeat: repeat;
  background-position: center;
}

.mlCsTecnaProcess__inner {
  padding: 88px 64px 92px;
}

.mlCsTecnaProcess__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 72px 78px;
  align-items: start;
}

.mlCsTecnaProcess__block {
  min-width: 0;
}

.mlCsTecnaProcess__block--text {
  padding-top: 12px;
}

.mlCsTecnaProcess__block--imageTop,
.mlCsTecnaProcess__block--imageBottom {
  display: flex;
}

.mlCsTecnaProcess__block--imageTop {
  justify-content: flex-end;
}

.mlCsTecnaProcess__block--imageBottom {
  justify-content: flex-start;
}

.mlCsTecnaProcess__block--imageTop img,
.mlCsTecnaProcess__block--imageBottom img {
  display: block;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

.mlCsTecnaProcess__list {
  margin-top: 34px;
}

.mlCsTecnaProcess__list--compact {
  margin-top: 30px;
}

.mlCsTecnaProcess__item + .mlCsTecnaProcess__item {
  margin-top: 20px;
}

.mlCsTecnaProcess__item strong {
  display: block;
  color: var(--ml-cs-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 3px;
}

.mlCsTecnaProcess__item p {
  color: var(--ml-cs-text);
  font-size: 14px;
  line-height: 1.32;
  max-width: 650px;
}

.mlCsTecnaProcess .mlCsTecnaFullLayout__textLink {
  margin-top: 44px;
}

.mlCsTecnaProcess__block--approach {
  padding-top: 74px;
}

/* NUMBERS + CERTIFICATIONS */

.mlCsTecnaData {
  width: 100%;
  background: var(--ml-cs-white);
}

.mlCsTecnaData__inner {
  padding: 86px 64px 92px;
}

.mlCsTecnaNumbers {
  text-align: center;
}

.mlCsTecnaNumbers__subtitle {
  margin: 14px auto 54px;
  color: var(--ml-cs-muted);
  font-size: 14px;
  line-height: 1.35;
}

.mlCsTecnaNumbers__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.mlCsTecnaNumbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mlCsTecnaNumbers__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 16px;
}

.mlCsTecnaNumbers__iconFallback {
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 50%;
  margin-bottom: 16px;
  position: relative;
}

.mlCsTecnaNumbers__iconFallback::before,
.mlCsTecnaNumbers__iconFallback::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, .3);
  left: 9px;
  right: 9px;
  height: 1px;
  top: 16px;
}

.mlCsTecnaNumbers__iconFallback::after {
  transform: rotate(90deg);
}

.mlCsTecnaNumbers__item strong {
  color: var(--ml-cs-text);
  font-size: 20px;
  line-height: 1;
  font-weight: 650;
  margin-bottom: 14px;
}

.mlCsTecnaNumbers__item span {
  display: block;
  width: 100%;
  min-height: 32px;
  padding-top: 13px;
  border-top: 1px solid rgba(0, 0, 0, .28);
  color: var(--ml-cs-muted);
  font-size: 11px;
  line-height: 1.16;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mlCsTecnaCert {
  width: min(760px, 100%);
  margin: 92px auto 0;
  padding-top: 62px;
  border-top: 1px solid rgba(0, 0, 0, .28);
  text-align: center;
}

.mlCsTecnaCert__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 22px 0 34px;
  flex-wrap: wrap;
}

.mlCsTecnaCert__logos img {
  display: block;
  max-width: 98px;
  max-height: 72px;
  object-fit: contain;
}

.mlCsTecnaCert__logoPlaceholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  min-height: 58px;
  border: 1px solid rgba(0, 81, 124, .3);
  color: var(--ml-cs-primary);
  font-size: 12px;
  line-height: 1.15;
  padding: 8px;
}

.mlCsTecnaCert__title {
  color: var(--ml-cs-text);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 650;
  margin: 0 0 42px;
}

.mlCsTecnaCert__intro,
.mlCsTecnaCert__list {
  width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.mlCsTecnaCert__intro {
  color: var(--ml-cs-muted);
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 18px;
}

.mlCsTecnaCert__list {
  list-style: none;
  padding: 0;
  color: var(--ml-cs-text);
  font-size: 13px;
  line-height: 1.4;
}

.mlCsTecnaCert__list li {
  position: relative;
  padding-left: 14px;
}

.mlCsTecnaCert__list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
}

/* COORDINATION */

.mlCsTecnaCoordination {
  position: relative;
  width: 100%;
  min-height: 635px;
  color: var(--ml-cs-white);
  background-color: #222;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.mlCsTecnaCoordination::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .36);
  z-index: 1;
}

.mlCsTecnaCoordination__inner {
  min-height: 635px;
  display: flex;
  align-items: flex-end;
  padding: 168px 64px 76px;
}

.mlCsTecnaCoordination__content {
  width: min(720px, 100%);
}

.mlCsTecnaCoordination__content p {
  width: min(690px, 100%);
  margin-top: 26px;
  color: var(--ml-cs-white);
  font-size: 14px;
  line-height: 1.45;
}

/* CTA */

.mlCsTecnaCta {
  width: 100%;
  background: var(--ml-cs-white);
  text-align: center;
}

.mlCsTecnaCta__inner {
  width: min(760px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 32px 78px;
}

.mlCsTecnaCta p {
  width: min(540px, 100%);
  margin: 22px auto 26px;
  color: var(--ml-cs-muted);
  font-size: 14px;
  line-height: 1.45;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .mlCsTecnaHero,
  .mlCsTecnaHero__inner {
    min-height: 680px;
  }

  .mlCsTecnaProcess__grid {
    gap: 54px;
  }

  .mlCsTecnaNumbers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 26px;
  }
}

@media (max-width: 880px) {
  .mlCsTecnaHero,
  .mlCsTecnaHero__inner {
    min-height: 620px;
  }

  .mlCsTecnaHero__inner,
  .mlCsTecnaComplexity__inner,
  .mlCsTecnaHistory__inner,
  .mlCsTecnaProcess__inner,
  .mlCsTecnaData__inner,
  .mlCsTecnaCoordination__inner {
    padding-left: 28px;
    padding-right: 28px;
  }

  .mlCsTecnaComplexity__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .mlCsTecnaComplexity__brand {
    font-size: 18px;
  }

  .mlCsTecnaProcess__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mlCsTecnaProcess__block--approach {
    padding-top: 8px;
  }

  .mlCsTecnaProcess__block--imageTop {
    order: 2;
  }

  .mlCsTecnaProcess__block--imageBottom {
    order: 3;
  }

  .mlCsTecnaProcess__block--approach {
    order: 4;
  }

  .mlCsTecnaProcess__block--text {
    order: 1;
  }

  .mlCsTecnaProcess__block--imageTop img,
  .mlCsTecnaProcess__block--imageBottom img {
    height: 340px;
  }

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

  .mlCsTecnaCoordination,
  .mlCsTecnaCoordination__inner {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .mlCsTecnaFullLayout__kicker {
    font-size: 10px;
    letter-spacing: .28em;
    margin-bottom: 20px;
  }

  .mlCsTecnaFullLayout__sectionTitle {
    font-size: 31px;
    line-height: 1;
  }

  .mlCsTecnaHero {
    background-position: center;
  }

  .mlCsTecnaHero,
  .mlCsTecnaHero__inner {
    min-height: 640px;
  }

  .mlCsTecnaHero__inner {
    padding: 92px 22px 38px;
  }

  .mlCsTecnaHero__title {
    font-size: 42px;
    line-height: .94;
    margin-bottom: 26px;
  }

  .mlCsTecnaHero__lead,
  .mlCsTecnaHero__copy {
    font-size: 13px;
    line-height: 1.42;
  }

  .mlCsTecnaComplexity__inner {
    min-height: 0;
    padding: 54px 22px 58px;
  }

  .mlCsTecnaHistory__inner {
    padding: 62px 22px 70px;
  }

  .mlCsTecnaHistory__text {
    font-size: 13px;
  }

  .mlCsTecnaProcess__inner {
    padding: 58px 22px 64px;
  }

  .mlCsTecnaProcess__block--imageTop img,
  .mlCsTecnaProcess__block--imageBottom img {
    height: 285px;
  }

  .mlCsTecnaData__inner {
    padding: 62px 22px 68px;
  }

  .mlCsTecnaNumbers__subtitle {
    margin-bottom: 40px;
  }

  .mlCsTecnaNumbers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 18px;
  }

  .mlCsTecnaNumbers__item strong {
    font-size: 18px;
  }

  .mlCsTecnaNumbers__item span {
    font-size: 9px;
  }

  .mlCsTecnaCert {
    margin-top: 62px;
    padding-top: 44px;
  }

  .mlCsTecnaCoordination,
  .mlCsTecnaCoordination__inner {
    min-height: 560px;
  }

  .mlCsTecnaCoordination__inner {
    padding: 120px 22px 48px;
  }

  .mlCsTecnaCta__inner {
    width: 100%;
    padding: 58px 22px 62px;
  }

  .mlCsTecnaCta p {
    font-size: 13px;
  }
}


/* Aggiornamento v1.0.1: font/colore coerenti con layout Figma */
.mlCsTecnaHero,
.mlCsTecnaHero *,
.mlCsTecnaComplexity,
.mlCsTecnaComplexity *,
.mlCsTecnaHistory,
.mlCsTecnaHistory *,
.mlCsTecnaCoordination,
.mlCsTecnaCoordination * {
  color: var(--ml-cs-white);
}

.mlCsTecnaHero .mlCsTecnaFullLayout__logoText,
.mlCsTecnaComplexity .mlCsTecnaFullLayout__logoText,
.mlCsTecnaHistory .mlCsTecnaFullLayout__logoText,
.mlCsTecnaCoordination .mlCsTecnaFullLayout__logoText {
  color: var(--ml-cs-primary);
}

.mlCsTecnaHero__title,
.mlCsTecnaFullLayout__sectionTitle--white {
  color: #ffffff;
}
