@charset "utf-8";
/* =====================================================================
   EMPOWERELY — homepage sections
   ===================================================================== */

main#top { overflow: clip; }

/* --- Hero (layout + asset WETA) ------------------------------------- */
.em-hero--weta {
  --weta-bg: #E9EBF7;
  --weta-ink: #010915;
  --weta-muted: #4A5764;
  --weta-blue: #3C66FA;
  --weta-purple: #6640FF;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--weta-bg);
  color: var(--weta-ink);
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.em-hero__decor {
  position: absolute;
  inset: -8% 0 auto;
  z-index: 0;
  pointer-events: none;
  opacity: .9;
}
.em-hero__decor-svg {
  width: min(1400px, 120%);
  height: auto;
  max-width: none;
}

.em-hero__content {
  position: relative;
  z-index: 2;
}

.em-hero__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 42vw, 520px);
  z-index: 1;
}

.em-hero__ball {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}
.em-hero__ball img {
  width: min(100%, 480px);
  height: auto;
  transform-origin: center center;
  animation: em-hero-pulse 1.3s ease-in-out infinite alternate;
}

.em-hero__device {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
}
.em-hero__device img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 60px rgba(11, 23, 40, .18));
  animation: em-hero-float 1.3s ease-in-out infinite alternate;
}

/* Kicker + freccia (stile WETA subtitle) */
.em-kicker--hero {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.1rem;
  color: var(--weta-ink);
  font-family: var(--display);
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}
.em-kicker__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  padding: .2rem .7rem;
  border-radius: 999px;
  background: var(--weta-blue);
  color: #fff;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.em-kicker__text { font-weight: 700; }
.em-hero__arrow {
  width: 8px;
  height: 12px;
  flex-shrink: 0;
  margin-left: .15rem;
  animation: em-arrow-x 1.3s ease-in-out infinite alternate;
}

.em-hero--weta .em-hero__title {
  font-family: var(--display);
  font-size: clamp(2.35rem, 1.35rem + 3.2vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--weta-ink);
  max-width: 18ch;
}

.em-hero--weta .em-hero__lead {
  margin-top: 1.15rem;
  max-width: 40rem;
  font-size: clamp(1.02rem, 0.95rem + 0.35vw, 1.15rem);
  line-height: 1.65;
  color: var(--weta-muted);
  font-weight: 500;
}

.em-hero--weta .em-hero__actions {
  margin-top: 1.85rem;
  margin-bottom: 2.35rem;
  gap: 10px;
}

/* Pulsanti hero — stile WETA rr-btn */
.em-rr-btn {
  --em-rr-blue: #3C66FA;
  --em-rr-ink: #010915;

  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 15px 31.5px;
  border-radius: 100px;
  border: 1px solid rgba(1, 9, 21, .14);
  background: transparent;
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--em-rr-ink);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .3s ease;
}
.em-rr-btn::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -200%;
  left: 50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: var(--em-rr-blue);
  transform: translateX(-50%);
  transition: top 800ms ease;
}
.em-rr-btn__wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  float: left;
}
.em-rr-btn__text {
  display: flex !important;
  align-items: center;
  transition: transform .3s ease, top .3s ease, color .3s ease;
}
.em-rr-btn__text--one {
  position: relative;
  color: var(--em-rr-ink);
}
.em-rr-btn__text--two {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: #fff;
  white-space: nowrap;
}
.em-rr-btn:hover::before,
.em-rr-btn:focus-visible::before {
  top: -40%;
}
.em-rr-btn:hover .em-rr-btn__text--one,
.em-rr-btn:focus-visible .em-rr-btn__text--one {
  transform: translateY(-150%);
}
.em-rr-btn:hover .em-rr-btn__text--two,
.em-rr-btn:focus-visible .em-rr-btn__text--two {
  top: 50%;
  transform: translateY(-50%);
}

/* Primario (rr-btn__theme): blu pieno → invertito all’hover */
.em-rr-btn--theme {
  border-color: transparent;
}
.em-rr-btn--theme::before {
  top: -40%;
}
.em-rr-btn--theme .em-rr-btn__text--one {
  color: #fff;
}
.em-rr-btn--theme .em-rr-btn__text--two {
  color: var(--em-rr-ink);
}
.em-rr-btn--theme:hover::before,
.em-rr-btn--theme:focus-visible::before {
  top: 200%;
}
.em-rr-btn--theme:hover .em-rr-btn__text--two,
.em-rr-btn--theme:focus-visible .em-rr-btn__text--two {
  color: var(--em-rr-ink);
}

/* Secondario (rr-btn): bordo chiaro → riempimento blu */
.em-rr-btn--sec {
  background: rgba(255, 255, 255, .55);
}
.em-rr-btn--sec:hover,
.em-rr-btn--sec:focus-visible {
  border-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .em-rr-btn::before,
  .em-rr-btn__text {
    transition: none;
  }
  .em-rr-btn:hover .em-rr-btn__text--one,
  .em-rr-btn:focus-visible .em-rr-btn__text--one {
    transform: none;
  }
  .em-rr-btn:hover .em-rr-btn__text--two,
  .em-rr-btn:focus-visible .em-rr-btn__text--two {
    top: 100%;
    transform: none;
  }
}

.em-hero__social-proof { gap: 1.15rem 1.5rem; }

.em-hero__avatars { display: flex; align-items: center; }
.em-hero__avatars img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 999px;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(1, 9, 21, .08);
}
.em-hero__avatars img + img { margin-left: -18px; }

.em-hero__proof-stats { gap: 1.25rem; }
.em-hero__proof-bar {
  width: 2px;
  height: 38px;
  border-radius: 6px;
  background: var(--weta-ink);
  opacity: .18;
}
.em-hero__proof-value {
  font-family: var(--display);
  font-size: clamp(1.45rem, 1.2rem + 0.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--weta-ink);
}
.em-hero__proof-label {
  margin-top: .15rem;
  font-size: .9rem;
  color: var(--weta-muted);
  font-weight: 500;
}
.em-hero__stars {
  display: flex;
  gap: 2px;
  margin-top: .25rem;
}

@keyframes em-arrow-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(6px); }
}
@keyframes em-hero-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
@keyframes em-hero-float {
  0% { transform: translateX(0); }
  100% { transform: translateX(10px); }
}

@media (max-width: 991.98px) {
  .em-hero--weta .em-hero__title {
    max-width: 100%;
    text-transform: none;
  }
  .em-hero__ball img { width: min(100%, 360px); }
  .em-hero__device { width: min(92%, 400px); }
  .em-hero__decor { opacity: .5; }
}

@media (prefers-reduced-motion: reduce) {
  .em-hero__arrow,
  .em-hero__ball img,
  .em-hero__device img {
    animation: none;
  }
}

/* Mock placeholder (Come funziona) */
.em-mock {
  background: #fff;
  border: 1px solid var(--em-line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.em-mock img { width: 100%; height: 100%; object-fit: cover; }
.em-mock__placeholder {
  height: 100%;
  padding: 1.2rem;
  display: grid;
  align-content: start;
  gap: .7rem;
  background: linear-gradient(165deg, #f4f9fc 0%, #fff 42%);
}
.em-mock__bar {
  display: block;
  height: 14px;
  width: 58%;
  border-radius: 999px;
  background: #d9e8f1;
}
.em-mock__bar--short { width: 34%; background: #e7eef3; }
.em-mock__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  margin-top: .4rem;
}
.em-mock__cards span {
  display: block;
  aspect-ratio: 1.2;
  border-radius: 12px;
  border: 1.5px dashed rgba(21, 169, 226, .4);
  background: rgba(21, 169, 226, .06);
}
.em-mock__label {
  margin-top: auto;
  font-size: .78rem;
  color: var(--em-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}

/* --- Partners (WETA brand__area) ------------------------------------ */
.em-partners {
  padding: 4.25rem 0;
  border-block: 1px solid rgba(1, 9, 21, 0.1);
  background: #fff;
  position: relative;
  z-index: 2;
}
.em-partners__label {
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--em-muted);
  font-weight: 700;
  margin-bottom: 2rem;
}
.em-partners__row {
  --bs-gutter-y: 1.5rem;
}
.em-partners__item {
  display: grid;
  place-items: center;
  min-height: 2.75rem;
}
.em-partners__logo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  opacity: .72;
  filter: grayscale(1);
  cursor: pointer;
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
}
.em-partners__item:hover .em-partners__logo {
  transform: scale(1.05);
  opacity: 1;
  filter: grayscale(0);
}
.em-partners__fallback {
  color: var(--em-muted);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .02em;
}

/* --- Contrast (WETA-styled dual panel) ------------------------------ */
.em-contrast {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  background: #fff;
}
.em-contrast > .container { position: relative; z-index: 1; }
.em-contrast__shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.em-contrast__shape--blob {
  top: -6rem;
  right: -38vw;
  opacity: .85;
}
.em-contrast__shape--blob img {
  width: min(1100px, 85vw);
  height: auto;
  max-width: none;
}
.em-contrast__shape--bg {
  bottom: -8%;
  left: -12%;
  opacity: .45;
}
.em-contrast__shape--bg img {
  width: min(520px, 55vw);
  height: auto;
  max-width: none;
}
.em-contrast__head {
  max-width: 36.5rem;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
}
.em-contrast__kicker { gap: .35rem; }
.em-contrast__kicker-num { font-weight: 800; }
.em-contrast__kicker-arrow {
  width: 8px;
  height: auto;
  margin-left: .2rem;
  animation: em-how-arrow 1.3s infinite alternate;
}
.em-contrast__title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  letter-spacing: -.02em;
  font-weight: 700;
}

.em-contrast__col {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.2vw, 2.25rem);
  border: 1px solid var(--em-line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.em-contrast__col:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.em-contrast__col-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.35rem;
}
.em-contrast__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 500px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.em-contrast__badge--muted {
  background: rgba(1, 9, 21, .05);
  color: var(--em-muted);
}
.em-contrast__badge--cyan {
  background: var(--em-cyan);
  color: #fff;
}
.em-contrast__col h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
.em-contrast__list {
  display: grid;
  gap: .95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.em-contrast__list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: var(--em-ink-2);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 500;
}
.em-contrast__mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: .05rem;
  border-radius: 500px;
}
.em-contrast__mark svg { display: block; }
.em-contrast__mark--off {
  background: rgba(1, 9, 21, .06);
  color: var(--em-muted);
}
.em-contrast__mark--on {
  background: var(--em-cyan);
  color: #fff;
}

.em-contrast__col--today {
  background: var(--em-cream);
  border-color: rgba(1, 9, 21, .06);
}
.em-contrast__col--today h3 { color: var(--em-ink); }
.em-contrast__col--next {
  border-color: rgba(21, 169, 226, .28);
  background:
    linear-gradient(165deg, #fff 0%, var(--em-cyan-soft) 100%);
}
.em-contrast__col--next h3 { color: var(--em-cyan-deep); }

@media (max-width: 991.98px) {
  .em-contrast__shape--blob { right: -55vw; opacity: .55; }
  .em-contrast__badge {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .em-contrast__kicker-arrow { animation: none !important; }
  .em-contrast__col:hover { transform: none; }
}

/* --- Roles (WETA why-choose-us) ------------------------------------- */
.em-roles {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  background: var(--em-cream);
}
.em-roles > .container { position: relative; z-index: 1; }
.em-roles__bg {
  position: absolute;
  left: -8%;
  top: -4%;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}
.em-roles__bg img {
  width: min(560px, 70vw);
  height: auto;
  max-width: none;
}
.em-roles__glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.em-roles__glow--1 {
  width: 420px;
  height: 420px;
  left: -12%;
  bottom: -18%;
  background: rgba(21, 169, 226, .16);
}
.em-roles__glow--2 {
  width: 480px;
  height: 480px;
  right: -14%;
  bottom: -22%;
  background: rgba(166, 199, 66, .14);
}
.em-roles__head {
  max-width: 36.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.em-roles__kicker { gap: .35rem; }
.em-roles__kicker-num { font-weight: 800; }
.em-roles__kicker-arrow {
  width: 8px;
  height: auto;
  margin-left: .2rem;
  animation: em-how-arrow 1.3s infinite alternate;
}
.em-roles__title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  letter-spacing: -.02em;
  font-weight: 700;
}

.em-roles__track { padding-top: .35rem; }
.em-roles__bar {
  position: absolute;
  top: 40px;
  left: 50%;
  width: min(1130px, 88%);
  height: 0;
  border-top: 1px dashed rgba(1, 9, 21, .14);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.em-roles__item { position: relative; z-index: 1; }
.em-roles__icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: .35rem;
}
.em-roles__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 500px;
  background: var(--em-cyan);
  box-shadow: 0 6px 16px rgba(1, 9, 21, .14);
}
.em-roles__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.em-roles__connector {
  margin-top: -.15rem;
  display: flex;
  justify-content: center;
}
.em-roles__connector img { width: auto; height: 36px; }
.em-roles__body {
  margin-top: .85rem;
  padding: 1.65rem 1.5rem 1.75rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(13, 18, 30, .08);
  height: calc(100% - 5.5rem);
}
.em-roles__step {
  display: inline-block;
  margin-bottom: .85rem;
  padding: .2rem .75rem;
  border-radius: 4px;
  background: var(--em-dark);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.2;
}
.em-roles__item-title {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -.02em;
  font-weight: 700;
  margin-bottom: .55rem;
  line-height: 1.25;
}
.em-roles__body p {
  color: var(--em-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .em-roles__body { height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .em-roles__kicker-arrow { animation: none !important; }
}

/* --- Pillars (WETA our-features) ------------------------------------ */
.em-pillars {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  background: #fff;
  border-block: 1px solid rgba(1, 9, 21, .08);
}
.em-pillars > .container { position: relative; z-index: 1; }
.em-pillars__media {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}
.em-pillars__media img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(11, 23, 40, .12));
}
.em-pillars__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.35rem);
  max-width: 34rem;
}
.em-pillars__kicker { gap: .35rem; }
.em-pillars__kicker-num { font-weight: 800; }
.em-pillars__kicker-arrow {
  width: 8px;
  height: auto;
  margin-left: .2rem;
  animation: em-how-arrow 1.3s infinite alternate;
}
.em-pillars__title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0;
}
.em-pillars__lead {
  margin-top: .85rem;
  max-width: 32rem;
}

.em-pillars__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .em-pillars__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.em-pillars__item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.55rem 1.45rem 1.7rem;
  border: 1.5px solid rgba(1, 9, 21, .1);
  background: #fff;
  transition: border-color var(--t) var(--ease);
}
.em-pillars__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(1, 9, 21, .05);
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
}
.em-pillars__item:hover::after { transform: translateY(0); }
.em-pillars__item:hover { border-color: rgba(21, 169, 226, .35); }

.em-pillars__item-header {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: .85rem;
}
.em-pillars__item-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 40px;
}
.em-pillars__item-icon img {
  width: auto;
  max-width: 40px;
  height: auto;
  transition: transform .35s var(--ease);
}
.em-pillars__item:hover .em-pillars__item-icon img {
  transform: rotate(360deg);
}
.em-pillars__item h3 {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -.02em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.em-pillars__item p {
  margin: 0;
  color: rgba(1, 9, 21, .7);
  font-size: .95rem;
  line-height: 1.6;
}

@media (max-width: 1199.98px) {
  .em-pillars__media { max-width: 420px; margin-bottom: .5rem; }
  .em-pillars__head { text-align: center; margin-inline: auto; }
  .em-pillars__kicker { justify-content: center; }
  .em-pillars__lead { margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .em-pillars__kicker-arrow,
  .em-pillars__item-icon img { animation: none !important; }
  .em-pillars__item:hover .em-pillars__item-icon img { transform: none; }
}

/* --- Shared cards (legacy) ------------------------------------------ */
.em-cards {
  display: grid;
  gap: 1.05rem;
}
.em-cards--3,
.em-cards--4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .em-cards--3 { grid-template-columns: repeat(3, 1fr); }
  .em-cards--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .em-cards--4 { grid-template-columns: repeat(4, 1fr); }
}

.em-card {
  background: #fff;
  border: 1px solid var(--em-line);
  border-radius: var(--radius);
  padding: 1.45rem 1.3rem 1.6rem;
  transition:
    transform var(--t) var(--ease),
    border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
.em-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 169, 226, .38);
  box-shadow: var(--shadow);
}
.em-card__num {
  display: inline-block;
  margin-bottom: .9rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--em-cyan);
  font-variant-numeric: tabular-nums;
}
.em-card h3 {
  font-family: var(--display);
  font-size: 1.18rem;
  margin-bottom: .55rem;
  letter-spacing: -.02em;
  font-weight: 700;
  line-height: 1.25;
}
.em-card p {
  color: var(--em-muted);
  font-size: .95rem;
  line-height: 1.55;
}
.em-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  margin-bottom: 1.05rem;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.55), transparent 52%),
    linear-gradient(135deg, var(--em-cyan), #4db7e0);
  box-shadow: 0 10px 22px rgba(21, 169, 226, .28);
}

/* --- How (WETA #4 Services Provided) -------------------------------- */
.em-how {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  background: #fff;
}
.em-how > .container { position: relative; z-index: 1; }
.em-how__shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.em-how__shape--right {
  top: -4.5rem;
  right: -42vw;
}
.em-how__shape--right img {
  width: min(1267px, 90vw);
  height: auto;
  max-width: none;
}
.em-how__head {
  max-width: 36.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.em-how__kicker { gap: .35rem; }
.em-how__kicker-num { font-weight: 800; }
.em-how__kicker-arrow {
  width: 8px;
  height: auto;
  margin-left: .2rem;
  animation: em-how-arrow 1.3s infinite alternate;
}
@keyframes em-how-arrow {
  from { transform: translateX(0); }
  to { transform: translateX(6px); }
}
.em-how__title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  letter-spacing: -.02em;
  font-weight: 700;
}

.em-how__tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 21rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}
.em-how__tabs::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  border-radius: 10px;
  background: rgba(1, 9, 21, .05);
}
.em-how__tab-item {
  position: relative;
  z-index: 1;
  margin: 0;
}
.em-how__tab-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 4px;
  height: 100%;
  border-radius: 10px;
  background: var(--em-cyan);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.em-how__tab-item.is-active::after { opacity: 1; }

.em-how__tab {
  display: flex;
  align-items: center;
  gap: .875rem;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--em-ink);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  transition: color var(--t) var(--ease);
}
.em-how__tab.is-active { color: var(--em-cyan); }
.em-how__tab-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 500px;
  background: rgba(1, 9, 21, .05);
  transition: background var(--t) var(--ease);
}
.em-how__tab.is-active .em-how__tab-icon {
  background: var(--em-cyan);
}
.em-how__tab-icon img {
  width: 22px;
  height: 22px;
  display: block;
  transition: filter var(--t) var(--ease);
}
.em-how__tab.is-active .em-how__tab-icon img {
  filter: brightness(0) invert(1);
}
.em-how__tab-label {
  font-weight: 500;
  letter-spacing: -.01em;
}

.em-how__panel {
  display: none;
  gap: 1.35rem;
}
.em-how__panel.is-active { display: grid; }

.em-how__media { position: relative; }
.em-how__media-single {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.em-how__collage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  max-width: 560px;
  margin-inline: auto;
}
.em-how__collage-img {
  position: absolute;
  width: auto;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 18px 40px rgba(11, 23, 40, .12));
  transition: transform .45s var(--ease);
}
.em-how__collage-img--1 {
  width: 42%;
  top: 8%;
  left: 0;
  z-index: 2;
}
.em-how__collage-img--2 {
  width: 58%;
  top: 18%;
  right: 0;
  z-index: 3;
}
.em-how__collage-img--3 {
  width: 52%;
  bottom: 6%;
  left: 8%;
  z-index: 4;
}
.em-how__collage-img--4 {
  width: 38%;
  top: 0;
  right: 12%;
  z-index: 1;
}
.em-how__panel.is-active .em-how__collage-img--1 { animation: em-how-float 5s ease-in-out infinite; }
.em-how__panel.is-active .em-how__collage-img--2 { animation: em-how-float 5.8s ease-in-out .4s infinite; }
.em-how__panel.is-active .em-how__collage-img--3 { animation: em-how-float 6.2s ease-in-out .8s infinite; }
.em-how__panel.is-active .em-how__collage-img--4 { animation: em-how-float 4.6s ease-in-out .2s infinite; }
@keyframes em-how-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.em-how__view {
  font-size: var(--fs-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--em-cyan-deep);
  font-weight: 700;
  margin-bottom: .55rem;
}
.em-how__copy h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -.02em;
  margin-bottom: .55rem;
  font-weight: 700;
}
.em-how__copy p { color: var(--em-muted); line-height: 1.55; max-width: 34rem; }

@media (max-width: 991.98px) {
  .em-how__tabs {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
    gap: .65rem;
    margin-bottom: .5rem;
  }
  .em-how__tabs::after,
  .em-how__tab-item::after { display: none; }
  .em-how__tab {
    font-size: 1rem;
    gap: .5rem;
  }
  .em-how__tab-icon {
    width: 40px;
    height: 40px;
  }
  .em-how__tab-icon img {
    width: 18px;
    height: 18px;
  }
  .em-how__shape--right { right: -55vw; opacity: .7; }
}

/* --- Stats (WETA happy-clients / fun fact) -------------------------- */
.em-stats {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  background: #f7f8fc;
  color: var(--em-ink);
}
.em-stats > .container { position: relative; z-index: 1; }

.em-stats__glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(180px);
}
.em-stats__glow--1 {
  left: -20%;
  top: 10%;
  width: 420px;
  height: 160px;
  transform: rotate(127deg);
  background: rgba(21, 169, 226, .35);
}
.em-stats__glow--2 {
  right: -18%;
  top: 20%;
  width: 420px;
  height: 160px;
  transform: rotate(127deg);
  background: rgba(166, 199, 66, .4);
}
.em-stats__glow--3 {
  left: 50%;
  top: 45%;
  width: 640px;
  height: 200px;
  transform: translate(-50%, -50%);
  background: rgba(21, 169, 226, .22);
  filter: blur(220px);
}

.em-stats__shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.em-stats__shape--left { left: 0; top: -2.5rem; }
.em-stats__shape--right { right: .5rem; top: -1.5rem; }
.em-stats__shape--center {
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
}
.em-stats__shape img {
  width: auto;
  max-width: 140px;
  height: auto;
}
.em-stats__float { animation: em-stats-float 3.2s ease-in-out infinite alternate; }
.em-stats__float--alt { animation-name: em-stats-float-x; }
@keyframes em-stats-float {
  from { transform: translateY(0); }
  to { transform: translateY(12px); }
}
@keyframes em-stats-float-x {
  from { transform: translateX(0); }
  to { transform: translateX(10px); }
}

.em-stats__head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.em-stats__kicker { gap: .35rem; color: var(--em-cyan-deep); }
.em-stats__kicker-num { font-weight: 800; }
.em-stats__kicker-arrow {
  width: 8px;
  height: auto;
  margin-left: .2rem;
  animation: em-how-arrow 1.3s infinite alternate;
}
.em-stats__title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  letter-spacing: -.02em;
  font-weight: 700;
  color: var(--em-ink);
}

.em-stats__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding: 1.45rem 1rem;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 10px 50px rgba(3, 6, 17, .1);
  backdrop-filter: blur(8px);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.em-stats__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(3, 6, 17, .14);
}
.em-stats__item-icon {
  flex: 0 0 auto;
  margin-top: .35rem;
}
.em-stats__item-icon img {
  width: auto;
  max-width: 52px;
  height: auto;
  display: block;
}
.em-stats__item:hover .em-stats__item-icon {
  animation: em-stats-wobble 1s ease-in-out 1;
}
@keyframes em-stats-wobble {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-6px); }
  50% { transform: translateY(3px); }
  75% { transform: translateY(-3px); }
}
.em-stats__item-text {
  flex: 1 1 8rem;
  min-width: 0;
  text-align: center;
}
.em-stats__value {
  font-family: var(--display);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--em-ink);
  margin: 0;
}
.em-stats__label {
  margin: .35rem 0 0;
  color: #848484;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 575.98px) {
  .em-stats__item { padding: 1.15rem .85rem; }
  .em-stats__value { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .em-stats__kicker-arrow,
  .em-stats__float,
  .em-stats__item-icon { animation: none !important; }
  .em-stats__item:hover { transform: none; }
}

/* --- Sectors (WETA what-we-do / Areas of Expertise) ----------------- */
.em-sectors {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  background: #fff;
}
.em-sectors__head {
  display: flex;
  flex-direction: column;
  gap: 1rem 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 768px) {
  .em-sectors__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.em-sectors__head-copy { max-width: 34rem; }
.em-sectors__kicker { gap: .35rem; }
.em-sectors__kicker-num { font-weight: 800; }
.em-sectors__kicker-arrow {
  width: 8px;
  height: auto;
  margin-left: .2rem;
  animation: em-how-arrow 1.3s infinite alternate;
}
.em-sectors__title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0;
}
.em-sectors__lead {
  max-width: 22rem;
  margin: 0;
}

.em-sectors__item {
  padding: clamp(2.25rem, 4vw, 3.75rem) clamp(1.35rem, 2.5vw, 2.25rem) clamp(2.5rem, 4vw, 4rem);
  background: #f9f5ef;
  transition:
    transform var(--t) var(--ease),
    background var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
.em-sectors__item:hover {
  transform: translateY(-4px);
  background: var(--em-cyan-soft);
  box-shadow: var(--shadow-sm);
}
.em-sectors__item-icon {
  margin-bottom: 1.75rem;
}
.em-sectors__item-icon img {
  width: auto;
  max-width: 56px;
  height: auto;
  display: block;
  transition: transform .35s var(--ease);
}
.em-sectors__item:hover .em-sectors__item-icon img {
  transform: scale(1.08);
}
.em-sectors__item-title {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -.01em;
  font-weight: 700;
  margin: 0 0 .55rem;
  line-height: 1.3;
}
.em-sectors__item-text {
  margin: 0;
  color: rgba(1, 9, 21, .7);
  font-size: .95rem;
  line-height: 1.65;
  max-width: 18rem;
}

.em-sectors__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.35rem;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(1, 9, 21, .08);
  color: var(--em-muted);
  font-weight: 600;
  font-size: .92rem;
}
.em-sectors__meta li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.em-sectors__meta li::before {
  content: "";
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--em-lime);
}

@media (prefers-reduced-motion: reduce) {
  .em-sectors__kicker-arrow { animation: none !important; }
  .em-sectors__item:hover { transform: none; }
  .em-sectors__item:hover .em-sectors__item-icon img { transform: none; }
}

/* --- Italia --------------------------------------------------------- */
.em-italia {
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.em-italia__band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  padding: clamp(1.45rem, 3vw, 1.95rem);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--em-line);
  box-shadow: var(--shadow-sm);
}
.em-italia__band h2 {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -.02em;
  margin-bottom: .4rem;
  font-weight: 700;
}
.em-italia__band p {
  color: var(--em-muted);
  max-width: 42rem;
  line-height: 1.55;
}

/* --- FAQ (WETA rs__faq) --------------------------------------------- */
.em-faq {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  background: var(--em-cream);
  border-top: 1px solid rgba(1, 9, 21, .08);
}
.em-faq__media {
  max-width: 480px;
  margin-inline: auto;
}
.em-faq__media img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(11, 23, 40, .12));
}
.em-faq__head {
  margin-bottom: 1.75rem;
  max-width: 34rem;
}
.em-faq__kicker { gap: .35rem; }
.em-faq__kicker-num { font-weight: 800; }
.em-faq__kicker-arrow {
  width: 8px;
  height: auto;
  margin-left: .2rem;
  animation: em-how-arrow 1.3s infinite alternate;
}
.em-faq__title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0;
}

.em-faq__list { display: grid; gap: .875rem; }
.em-faq__item {
  margin: 0;
  border: 1px solid rgba(1, 9, 21, .1);
  background: #fff;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.em-faq__item[open] {
  border-color: transparent;
  box-shadow: 0 6px 50px rgba(1, 9, 21, .1);
}
.em-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 4rem 1.15rem 1.2rem;
  position: relative;
  cursor: pointer;
}
.em-faq__item summary::-webkit-details-marker { display: none; }
.em-faq__q {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.015em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--em-ink);
}
.em-faq__item summary i {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border-radius: 500px;
  border: 2px solid rgba(1, 9, 21, .12);
  flex-shrink: 0;
}
.em-faq__item summary i::before,
.em-faq__item summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--em-ink);
  transform: translate(-50%, -50%);
}
.em-faq__item summary i::before { width: 12px; height: 2px; }
.em-faq__item summary i::after { width: 2px; height: 12px; }
.em-faq__item[open] summary i {
  background: rgba(1, 9, 21, .06);
  border-color: transparent;
}
.em-faq__item[open] summary i::after { opacity: 0; }
.em-faq__a {
  padding: 0 1.35rem 1.35rem;
  color: var(--em-muted);
  max-width: 40rem;
  line-height: 1.6;
  font-size: .98rem;
}
.em-faq__a p { margin: 0; }

@media (max-width: 1199.98px) {
  .em-faq__media { max-width: 380px; }
  .em-faq__head { text-align: center; margin-inline: auto; }
  .em-faq__kicker { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .em-faq__kicker-arrow { animation: none !important; }
}

/* --- CTA (WETA cta__area) ------------------------------------------- */
.em-cta {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(3.75rem, 7vw, 5.25rem);
}
.em-cta__band {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2.5rem, 5vw, 5.5rem) clamp(1.5rem, 6vw, 9rem);
  background: var(--em-cyan);
  color: #fff;
  box-shadow: 20px 20px 0 rgba(11, 23, 40, .12);
}
.em-cta__content {
  position: relative;
  z-index: 2;
  max-width: 26rem;
}
.em-cta__kicker {
  margin: 0 0 .65rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.em-cta__title {
  font-family: var(--display);
  font-size: clamp(1.65rem, 1.25rem + 1.6vw, 2.5rem);
  letter-spacing: -.025em;
  margin: 0 0 .75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}
.em-cta__lead {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, .86);
  line-height: 1.55;
  font-size: 1.02rem;
}
.em-cta__media {
  position: absolute;
  top: -4rem;
  right: -10rem;
  z-index: 1;
  pointer-events: none;
  width: min(640px, 58%);
}
.em-cta__media img {
  width: 100%;
  height: auto;
  max-width: none;
  -webkit-mask-image: var(--em-cta-mask);
  mask-image: var(--em-cta-mask);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.em-rr-btn--on-cta {
  --em-rr-border: #fff;
  border-color: #fff;
  color: var(--em-ink);
}
.em-rr-btn--on-cta::before {
  background: #fff;
}
.em-rr-btn--on-cta .em-rr-btn__text--one { color: #fff; }
.em-rr-btn--on-cta .em-rr-btn__text--two { color: var(--em-ink); }
.em-rr-btn--on-cta:hover,
.em-rr-btn--on-cta:focus-visible {
  border-color: var(--em-dark);
}
.em-rr-btn--on-cta:hover::before,
.em-rr-btn--on-cta:focus-visible::before {
  background: var(--em-dark);
}
.em-rr-btn--on-cta:hover .em-rr-btn__text--two,
.em-rr-btn--on-cta:focus-visible .em-rr-btn__text--two {
  color: #fff;
}

@media (max-width: 991.98px) {
  .em-cta__band {
    padding: 2.5rem 1.5rem 2.75rem;
    box-shadow: 12px 12px 0 rgba(11, 23, 40, .1);
  }
  .em-cta__media {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .em-cta__media img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .em-cta__content { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .em-card:hover,
  .em-how__tab { transform: none; }
  .em-how__kicker-arrow,
  .em-how__collage-img,
  .em-sol__arrow { animation: none !important; }
}

/* =====================================================================
   SOLUZIONE (wireframe 2b)
   ===================================================================== */

.em-sol__num { font-weight: 800; }
.em-sol__arrow {
  width: 8px;
  height: auto;
  margin-left: .2rem;
  animation: em-how-arrow 1.3s infinite alternate;
}

/* Benefits */
.em-sol-benefits {
  padding: var(--section-y) 0;
  background: #fff;
}
.em-sol-benefits__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.em-sol-benefits__item {
  padding: 2rem 1.5rem;
  background: #f9f5ef;
  border: 1.5px solid transparent;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.em-sol-benefits__item.is-featured {
  border-color: rgba(21, 169, 226, .45);
  background: linear-gradient(165deg, #fff, var(--em-cyan-soft));
}
.em-sol-benefits__item:hover { transform: translateY(-3px); }
.em-sol-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 14px;
  background: rgba(1, 9, 21, .05);
}
.em-sol-benefits__icon img { width: 36px; height: auto; }
.em-sol-benefits__item h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 .5rem;
}
.em-sol-benefits__item p {
  margin: 0;
  color: var(--em-muted);
  font-size: .95rem;
  line-height: 1.55;
}
.em-sol-benefits__badge {
  display: inline-block;
  margin-top: .9rem;
  padding: .25rem .7rem;
  border: 1px solid rgba(21, 169, 226, .45);
  border-radius: 8px;
  color: var(--em-cyan-deep);
  font-size: .75rem;
  font-weight: 700;
}

/* Impact */
.em-sol-impact {
  padding: var(--section-y) 0;
  background: var(--em-cream);
}
.em-sol-impact__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
  padding: 1.35rem 1.15rem;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 10px 40px rgba(3, 6, 17, .08);
}
.em-sol-impact__icon img { width: 44px; height: auto; }
.em-sol-impact__value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.em-sol-impact__label {
  margin: 0;
  color: #848484;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
}
.em-sol-impact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.em-sol-impact__chips li {
  padding: .3rem .85rem;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  background: #fff;
  font-size: .8rem;
  font-weight: 700;
  color: var(--em-muted);
}

/* Platform */
.em-sol-platform {
  padding: var(--section-y) 0;
  background: #fff;
}
.em-sol-platform__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  border: 1.5px solid var(--em-line);
  border-radius: 10px;
  overflow: hidden;
}
.em-sol-platform__tab {
  flex: 1 1 auto;
  min-width: 7rem;
  padding: .85rem 1rem;
  border: 0;
  border-right: 1px solid var(--em-line);
  background: #fff;
  font-weight: 700;
  font-size: .88rem;
  color: var(--em-muted);
  text-align: center;
}
.em-sol-platform__tab:last-child { border-right: 0; }
.em-sol-platform__tab.is-active {
  background: var(--em-dark);
  color: #fff;
}
.em-sol-platform__panel { display: none; }
.em-sol-platform__panel.is-active { display: block; }
.em-sol-platform__copy h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 .6rem;
}
.em-sol-platform__copy p {
  margin: 0;
  color: var(--em-muted);
  line-height: 1.55;
}
.em-sol-platform__media .em-how__collage {
  max-width: 520px;
  margin-inline: auto;
}

/* Compliance */
.em-sol-compliance {
  padding: var(--section-y) 0;
  background: var(--em-cream);
}
.em-sol-compliance__item {
  padding: 1.5rem 1.35rem;
  background: #fff;
  border: 1.5px solid rgba(1, 9, 21, .1);
}
.em-sol-compliance__icon {
  width: 40px;
  height: auto;
  margin-bottom: .9rem;
}
.em-sol-compliance__item h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 .45rem;
}
.em-sol-compliance__item p {
  margin: 0;
  color: var(--em-muted);
  font-size: .95rem;
  line-height: 1.55;
}
.em-sol-compliance__band {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-sm);
  background: #f6f4ef;
  border: 1px solid var(--em-line);
}
.em-sol-compliance__band h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 .4rem;
  font-weight: 700;
}
.em-sol-compliance__band p {
  margin: 0;
  color: var(--em-muted);
  max-width: 40rem;
  line-height: 1.55;
}

/* Human */
.em-sol-human {
  padding: var(--section-y) 0;
  background: #fff;
}
.em-sol-human__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: var(--em-cyan-soft);
}
.em-sol-human__icon img { width: 52px; height: auto; }
.em-sol-human__text { max-width: 38rem; }
.em-sol-human__badge {
  display: inline-block;
  margin-top: .85rem;
  padding: .3rem .8rem;
  border: 1px solid rgba(21, 169, 226, .4);
  border-radius: 8px;
  color: var(--em-cyan-deep);
  font-size: .8rem;
  font-weight: 700;
}

/* Science teaser */
.em-sol-science {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--em-cream);
}
.em-sol-science__band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  padding: 1.6rem 1.75rem;
  background: #fff;
  border: 1px solid var(--em-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.em-sol-science__avatars {
  display: flex;
  align-items: center;
}
.em-sol-science__avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}
.em-sol-science__avatars img:first-child { margin-left: 0; }
.em-sol-science__copy { flex: 1 1 16rem; }
.em-sol-science__copy h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 .35rem;
  font-weight: 700;
}
.em-sol-science__copy p {
  margin: 0;
  color: var(--em-muted);
  line-height: 1.5;
}

/* Italia */
.em-sol-italia {
  padding: var(--section-y) 0;
  background: #fff;
  border-top: 2.5px solid var(--em-cyan);
}
.em-sol-italia__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 1rem;
}
.em-sol-italia__chips li {
  padding: .3rem .8rem;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--em-muted);
  background: #fff;
}
.em-sol-italia__chips li.is-accent {
  border-color: rgba(21, 169, 226, .5);
  color: var(--em-cyan-deep);
}
.em-sol-italia__card {
  padding: 1.35rem 1.25rem;
  border: 1.5px solid rgba(1, 9, 21, .1);
  background: #fdfcfa;
}
.em-sol-italia__card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0 0 .45rem;
  font-weight: 700;
}
.em-sol-italia__card p {
  margin: 0;
  color: var(--em-muted);
  font-size: .92rem;
  line-height: 1.5;
}
.em-sol-italia__chip {
  display: inline-block;
  margin-bottom: .55rem;
  padding: .25rem .7rem;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
}
.em-sol-italia__compare {
  margin-top: .5rem;
  padding: 1.5rem;
  border: 1.5px solid var(--em-line);
  border-radius: var(--radius-sm);
  background: #fdfcfa;
}
.em-sol-italia__compare-label {
  margin: 0 0 .85rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--em-muted);
}
.em-sol-italia__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.em-sol-italia__table th,
.em-sol-italia__table td {
  padding: .75rem .9rem;
  border-bottom: 1px solid #e0dcd3;
  text-align: left;
  vertical-align: top;
}
.em-sol-italia__table thead th {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--em-muted);
  background: #f6f4ef;
}
.em-sol-italia__table tbody th {
  font-weight: 600;
  color: var(--em-ink);
}
.em-sol-italia__dl-soon {
  display: inline-block;
  margin-top: 1rem;
  color: var(--em-muted);
  font-size: .9rem;
  font-weight: 600;
}

/* Roadmap */
.em-sol-roadmap {
  padding: var(--section-y) 0;
  background: var(--em-cream);
}
.em-sol-roadmap__media img {
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 16px 40px rgba(11, 23, 40, .1));
}
.em-sol-roadmap__chip {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .3rem .8rem;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  background: #fff;
}
.em-sol-roadmap__future {
  padding: 1.15rem 1.25rem;
  border: 1.6px dashed var(--em-cyan);
  border-radius: 10px;
  background: rgba(21, 169, 226, .05);
}
.em-sol-roadmap__badge {
  display: inline-block;
  margin-bottom: .55rem;
  padding: .25rem .7rem;
  border: 1px solid rgba(21, 169, 226, .45);
  border-radius: 8px;
  color: var(--em-cyan-deep);
  font-size: .75rem;
  font-weight: 700;
}
.em-sol-roadmap__future p {
  margin: 0;
  color: var(--em-muted);
  line-height: 1.5;
  font-size: .95rem;
}

/* Sol CTA ghost secondary */
.em-rr-btn--ghost {
  background: transparent;
}
.em-rr-btn--ghost::before {
  background: rgba(255, 255, 255, .2);
}
.em-rr-btn--ghost .em-rr-btn__text--two {
  color: #fff;
}
.em-sol-cta__actions { margin-top: .25rem; }

