:root {
  --sd-color-ripe-tomato: #cf120f;
  --sd-color-sevendata-red: #EA1C18;
  --sd-color-southern-peach: #F9503A;
  --sd-color-broken-ice: #DADFE5;
  --sd-color-izmir-glass: #8AD8FF;
  --sd-color-deep-ocean: #064156;
  --sd-color-rich-black: #000000;
  --sd-color-total-white: #FFFFFF;
  --sd-color-bg-light: #FFFFFF;
  --sd-color-light-grey: #F0F2F4;
  --sd-color-bg-dark: rgb(65, 75, 91);
  --sd-color-text: #0F1720;
  --sd-color-text-light: rgba(255, 255, 255, 0.92);
  --sd-color-text-muted: rgba(15, 23, 32, 0.72);
  --sd-color-border: rgba(15, 23, 32, 0.10);
  --sd-font-heading: "Manrope", Arial, sans-serif;
  --sd-font-mono: "IBM Plex Mono", monospace;
  --sd-container: 1280px;
  --sd-navbar-height: 66px;
  --sd-navbar-offset-top: 18px;
  --sd-radius-sm: 12px;
  --sd-radius-md: 20px;
  --sd-radius-lg: 32px;
  --sd-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --sd-transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--sd-color-bg-light);
  color: var(--sd-color-text);
  font-family: var(--sd-font-heading);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ============================================
   LAYOUT
   ============================================ */
.sd-home {
  width: 100%;
  overflow-x: clip;
  background: var(--sd-color-bg-light);
}

.sd-main {
  position: relative;
  z-index: 1;
}

.sd-container {
  width: min(100% - 24px, var(--sd-container));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .sd-container {
    width: min(100% - 40px, var(--sd-container));
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.sd-eyebrow {
  margin: 0 0 12px 0;
  font-family: var(--sd-font-mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .sd-eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--sd-font-heading);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
}


/* ============================================
   NAVBAR
   ============================================ */
.sd-navbar-wrap {
  position: fixed;
  top: var(--sd-navbar-offset-top);
  left: 0;
  z-index: 9999;
  width: 100%;
  pointer-events: none;
}
.sd-navbar-wrap .sd-container {
  width: 94%;
  max-width: none;
  margin: 0 auto;
  pointer-events: none;
}
.sd-navbar {
  min-height: var(--sd-navbar-height);
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.sd-navbar__inner {
  min-height: var(--sd-navbar-height);
  display: grid;
  grid-template-columns: 1fr 66px;
  align-items: stretch;
  gap: 0;
}
@media (min-width: 1080px) {
  .sd-navbar__inner {
    grid-template-columns: 180px 1fr auto;
  }
}
@media (min-width: 1200px) {
  .sd-navbar__inner {
    grid-template-columns: 180px 1fr auto;
  }
}
.sd-navbar__brand {
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 10001;
}
@media (min-width: 1080px) {
  .sd-navbar__brand {
    padding: 0 24px;
    border-right: 1px solid rgba(15, 23, 32, 0.08);
  }
}
.sd-logo {
  height: 24px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .sd-logo {
    height: 30px;
  }
}
.sd-navbar__menu {
  display: none;
}
@media (min-width: 1080px) {
  .sd-navbar__menu {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    width: 100%;
  }
}
@media (max-width: 1079px) {
  .sd-navbar__menu {
    position: fixed;
    top: calc(var(--sd-navbar-offset-top) + var(--sd-navbar-height));
    left: 0;
    right: 0;
    width: 94%;
    margin: 0 auto;
    max-height: calc(100vh - var(--sd-navbar-offset-top) - var(--sd-navbar-height) - 20px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
  }

  .sd-navbar--open .sd-navbar__menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.sd-navbar__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 66px;
  min-height: var(--sd-navbar-height);
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10001;
}
.sd-navbar__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(15, 23, 32, 0.92);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.sd-navbar--open .sd-navbar__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.sd-navbar--open .sd-navbar__toggle span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.sd-navbar--open .sd-navbar__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 1080px) {
  .sd-navbar__toggle {
    display: none;
  }
}
.sd-navbar__nav {
  display: none;
}
@media (min-width: 1080px) {
  .sd-navbar__nav {
    display: flex;
    align-items: stretch;
  }
}
@media (max-width: 1079px) {
  .sd-navbar__nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.sd-navbar__actions {
  display: none;
}
@media (min-width: 1080px) {
  .sd-navbar__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-left: 1px solid rgba(15, 23, 32, 0.08);
  }
}
@media (max-width: 1079px) {
  .sd-navbar__actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    border-left: none;
    border-top: 1px solid rgba(15, 23, 32, 0.08);
  }
}
.sd-navbar__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
}
@media (max-width: 1079px) {
  .sd-navbar__list {
    flex-direction: column;
  }
}
.sd-navbar__list > li,
.sd-nav-item--has-mega {
  position: relative;
  display: flex;
  align-items: stretch;
}
@media (max-width: 1079px) {
  .sd-navbar__list > li,
  .sd-nav-item--has-mega {
    width: 100%;
    flex-direction: column;
  }
}
.sd-navbar__list > li > a,
.sd-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--sd-navbar-height);
  padding: 0 14px;
  font-family: var(--sd-font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(15, 23, 32, 0.92);
  transition: background-color var(--sd-transition), color var(--sd-transition);
}
@media (min-width: 1200px) {
  .sd-navbar__list > li > a,
  .sd-nav-link {
    padding: 0 18px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 1400px) {
  .sd-navbar__list > li > a,
  .sd-nav-link {
    padding: 0 26px;
    font-size: 15px;
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1079px) {
  .sd-navbar__list > li > a,
  .sd-nav-link {
    justify-content: flex-start;
    padding: 16px 20px;
    min-height: auto;
    border-bottom: 1px solid rgba(15, 23, 32, 0.06);
    width: 100%;
  }
}
.sd-navbar__list > li > a:hover,
.sd-nav-link:hover {
  background: rgba(255, 255, 255, 0.50);
}
.sd-nav-item--has-mega > .sd-nav-link--trigger {
  cursor: pointer;
}
.sd-nav-item--has-mega > .sd-nav-link--trigger::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(15, 23, 32, 0.86);
  transform: translateY(1px);
  transition: transform 0.3s ease;
}
@media (max-width: 1079px) {
  .sd-nav-item--open > .sd-nav-link--trigger::after {
    transform: translateY(1px) rotate(180deg);
  }
}
@media (min-width: 1080px) {
  .sd-nav-item--has-mega:hover > .sd-nav-link--trigger,
  .sd-nav-item--has-mega:focus-within > .sd-nav-link--trigger {
    background: rgba(255, 255, 255, 0.50);
  }
}
.sd-navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--sd-color-sevendata-red);
  color: var(--sd-color-total-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--sd-font-heading);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1200px) {
  .sd-navbar__cta {
    padding: 12px 24px;
    gap: 12px;
    font-size: 18px;
  }
}
@media (max-width: 1079px) {
  .sd-navbar__cta {
    width: 100%;
    justify-content: center;
  }
}
.sd-navbar__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  background: #e86a4d;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
@media (min-width: 1200px) {
  .sd-navbar__cta::before {
    width: 80px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  }
}
.sd-navbar__cta:hover {
  background: var(--sd-color-ripe-tomato);
}
.sd-navbar__cta:hover::before {
  width: calc(100% - 60px);
}
@media (min-width: 1200px) {
  .sd-navbar__cta:hover::before {
    width: calc(100% - 80px);
  }
}
.sd-navbar__cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  padding: 0px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}
@media (min-width: 1200px) {
  .sd-navbar__cta svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   MEGA MENU - BASE
   ============================================ */
.sd-mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 820px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
  z-index: 10000;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  display: block !important;
}
@media (min-width: 1200px) {
  .sd-mega-menu {
    min-width: 900px;
  }
}
/* MOBILE: nasconde il mega menu di default */
@media (max-width: 1079px) {
  .sd-mega-menu {
    position: static;
    transform: none;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .sd-nav-item--open .sd-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 1000px;
  }
}
/* DESKTOP: mostra all'hover */
@media (min-width: 1080px) {
  .sd-nav-item--has-mega:hover > .sd-mega-menu,
  .sd-nav-item--has-mega:focus-within > .sd-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}


/* ============================================
   MEGA MENU - BASE
   ============================================ */
.sd-mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  min-width: 820px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
  z-index: 10000;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  display: block !important;
}
@media (min-width: 1200px) {
  .sd-mega-menu {
    min-width: 900px;
  }
}
/* MOBILE: nasconde il mega menu di default */
@media (max-width: 1079px) {
  .sd-mega-menu {
    position: static;
    transform: none;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .sd-nav-item--open .sd-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 1000px;
  }
}
/* DESKTOP: mostra all'hover */
@media (min-width: 1080px) {
  .sd-nav-item--has-mega:hover > .sd-mega-menu,
  .sd-nav-item--has-mega:focus-within > .sd-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

/* ============================================
   MEGA MENU - VERSIONE COMPATTA (PRODOTTI)
   Striscia orizzontale con 3 voci affiancate
   ============================================ */
.sd-mega-menu--compact {
  min-width: 480px !important;
}
@media (min-width: 1200px) {
  .sd-mega-menu--compact {
    min-width: 520px !important;
  }
}

.sd-mega-menu--compact .sd-mega-menu__inner {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  padding: 12px 16px !important;
}
@media (min-width: 1200px) {
  .sd-mega-menu--compact .sd-mega-menu__inner {
    padding: 14px 20px !important;
  }
}

.sd-mega-menu--compact .sd-mega-menu__links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-around !important;
  gap: 0 !important;
}

.sd-mega-menu--compact .sd-mega-menu__links li {
  flex: 0 1 auto;
  padding: 0 !important;
  border: none !important;
}

.sd-mega-menu--compact .sd-mega-menu__links a {
  padding: 8px 16px !important;
  white-space: nowrap;
  font-size: 13px !important;
}
@media (min-width: 1200px) {
  .sd-mega-menu--compact .sd-mega-menu__links a {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
}

.sd-mega-menu--compact .sd-mega-menu__visual {
  display: none !important;
}

/* ============================================
   MEGA MENU - INNER LAYOUT (NORMALE)
   ============================================ */
.sd-mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 140px;  
  gap: 32px;
  padding: 24px;
  background: rgba(218, 223, 229, 0.90);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: none;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}
@media (min-width: 1200px) {
  .sd-mega-menu__inner {
    grid-template-columns: 1fr 1fr 140px;
    gap: 48px;
    padding: 32px;
  }
}
@media (max-width: 1079px) {
  .sd-mega-menu__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    background: rgba(218, 223, 229, 0.5);
    border: none;
    box-shadow: none;
  }
}

/* Columns */
.sd-mega-menu__col {
  min-width: 0;
}
@media (max-width: 1079px) {
  .sd-mega-menu__col {
    border-bottom: 1px solid rgba(15, 23, 32, 0.08);
  }
  .sd-mega-menu__col:last-of-type {
    border-bottom: none;
  }
}

/* Links */
.sd-mega-menu__links {
  display: grid;
  gap: 18px;
}
@media (min-width: 1200px) {
  .sd-mega-menu__links {
    gap: 24px;
  }
}
@media (max-width: 1079px) {
  .sd-mega-menu__links {
    gap: 0;
  }
  .sd-mega-menu__links li {
    border-bottom: 1px solid rgba(15, 23, 32, 0.08);
    padding: 12px 20px;
  }
  .sd-mega-menu__links li:last-child {
    border-bottom: none;
  }
}
.sd-mega-menu__links a {
  display: inline-block;
  font-family: var(--sd-font-mono);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(15, 23, 32, 0.94);
  text-transform: none;
  position: relative;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .sd-mega-menu__links a {
    font-size: 14px;
  }
}
@media (min-width: 1080px) {
  .sd-mega-menu__links a::after {
    content: "↑";
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    margin-left: 6px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    opacity: 0.7;
  }
  .sd-mega-menu__links a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    opacity: 1;
  }
  .sd-mega-menu__links a:hover::after {
    transform: rotate(90deg);
  }
}

/* Visual/Image - SOLO PER MEGA MENU NORMALE */
.sd-mega-menu__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  border-radius: 0;
  background-color: transparent;
  max-width: 120px;
  width: 100%;
  padding: 0;
  margin-left: auto;
}
@media (max-width: 1079px) {
  .sd-mega-menu__visual {
    display: none;
  }
}
.sd-mega-menu__image {
  width: 100%;
  height: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease-in-out;
  border-radius: 0;
}
.sd-mega-menu__image--transitioning {
  opacity: 0;
}

/* ============================================
   HERO (Generic)
   ============================================ */
.sd-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  color: var(--sd-color-total-white);
  margin-top: 0;
  padding-top: 0;
}

.sd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scale(1.02);
  background: linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.48)),
    url("img/96e954eee98a888b12324e7fc84d7aaba4c076a2.jpg") center top / cover no-repeat;
}

.sd-hero__content {
  width: 90%;
  max-width: none;
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--sd-navbar-height) + 40px);
  padding-bottom: 40px;
}

@media (min-width: 820px) {
  .sd-hero__content {
    width: 82%;
    padding-top: 84px;
  }
}

.sd-hero__content .sd-eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.sd-hero__title {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(36px, 6vw, 88px);
}

@media (min-width: 768px) {
  .sd-hero__title {
    margin-bottom: 24px;
    font-size: clamp(42px, 6vw, 88px);
  }
}

.sd-hero__text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 36px);
}

@media (min-width: 768px) {
  .sd-hero__text {
    font-size: clamp(20px, 1.8vw, 36px);
  }
}

.sd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .sd-hero__actions {
    gap: 16px;
    margin-top: 32px;
  }
}

@media (max-width: 639px) {
  .sd-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* ============================================
   HOME HERO SECTION - RICOSTRUITO
   ============================================ */
.sd-home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

/* Livello 1: Background */
.sd-home-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sd-home-hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.2), 
    rgba(0, 0, 0, 0.4)
  );
}

/* Container principale */
.sd-home-hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Livello 2: Logo del 7 - CENTRATO */
.sd-home-hero__visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 250px;
  z-index: 2;
}

@media (min-width: 768px) {
  .sd-home-hero__visual {
    max-width: 350px;
  }
}

@media (min-width: 992px) {
  .sd-home-hero__visual {
    max-width: 550px;
  }
}

.sd-home-hero__logo-mark {
  width: 100%;
  height: auto;
  display: block;
}

/* Livello 3: Titolo - SOPRA IL LOGO, CENTRATO */
.sd-home-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  text-align: center;
  z-index: 3;
}

@media (min-width: 820px) {
  .sd-home-hero__content {
    width: 82%;
  }
}

.sd-home-hero__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.02em;
}

@media (min-width: 480px) {
  .sd-home-hero__title {
    font-size: 48px;
  }
}

@media (min-width: 768px) {
  .sd-home-hero__title {
    font-size: 64px;
    letter-spacing: -0.01em;
  }
}

@media (min-width: 992px) {
  .sd-home-hero__title {
    font-size: 80px;
  }
}

@media (min-width: 1200px) {
  .sd-home-hero__title {
    font-size: 88px;
  }
}

/* Livello 4: Scroll - IN BASSO */
.sd-home-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
}

@media (min-width: 768px) {
  .sd-home-hero__scroll {
    bottom: 40px;
    gap: 12px;
  }
}

@media (min-width: 992px) {
  .sd-home-hero__scroll {
    bottom: 50px;
  }
}

.sd-home-hero__scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.sd-home-hero__scroll-link:hover {
  color: #ffffff;
  transform: translateY(5px);
}

.sd-home-hero__scroll-text {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--sd-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .sd-home-hero__scroll-text {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .sd-home-hero__scroll-text {
    font-size: 14px;
  }
}

.sd-home-hero__scroll-arrow {
  font-size: 24px;
  line-height: 1;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (min-width: 768px) {
  .sd-home-hero__scroll-arrow {
    font-size: 28px;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .sd-home-hero__scroll-arrow {
    animation: none !important;
  }
  
  .sd-home-hero__scroll-link:hover {
    transform: none;
  }
}


/* ============================================
   BUTTONS
   ============================================ */
.sd-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--sd-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--sd-transition), opacity var(--sd-transition),
    background-color var(--sd-transition), color var(--sd-transition),
    border-color var(--sd-transition);
}

@media (min-width: 768px) {
  .sd-button {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 12px;
  }
}

@media (max-width: 639px) {
  .sd-button {
    width: 100%;
  }
}

.sd-button:hover {
  transform: translateY(-1px);
}

.sd-button--primary {
  background: var(--sd-color-sevendata-red);
  color: var(--sd-color-total-white);
  border: 1px solid var(--sd-color-sevendata-red);
}

.sd-button--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sd-color-total-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

/* ============================================
   SECTIONS
   ============================================ */
.sd-section {
  position: relative;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .sd-section {
    padding: 80px 0;
  }
}

@media (min-width: 1080px) {
  .sd-section {
    padding: 112px 0;
  }
}

.sd-section--light {
  background: var(--sd-color-bg-light);
  color: var(--sd-color-text);
}

.sd-section--dark {
  background: var(--sd-color-bg-dark);
  color: var(--sd-color-text-light);
}

.sd-section__heading {
  max-width: 980px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .sd-section__heading {
    margin-bottom: 32px;
  }
}

.sd-section__heading h2 {
  font-size: clamp(22px, 4vw, 40px);
  line-height: 1.35;
}

@media (min-width: 768px) {
  .sd-section__heading h2 {
    font-size: clamp(25px, 4vw, 40px);
  }
}

.sd-section__heading h2 span {
  color: var(--sd-color-sevendata-red);
}

.sd-section__content {
  max-width: 860px;
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .sd-section__content {
    gap: 20px;
  }
}

.sd-section--light .sd-eyebrow {
  color: var(--sd-color-deep-ocean);
}

.sd-section--dark .sd-eyebrow {
  color: rgba(138, 216, 255, 0.92);
}

.sd-section--dark p,
.sd-section--dark h2,
.sd-section--dark h3 {
  color: var(--sd-color-text-light);
}

/* ============================================
   OFFERTA INTRO
   ============================================ */
.sd-section.sd-offerta-intro > .sd-container {
  width: 94%;
  max-width: none;
  margin: 0 auto;
}

@media (min-width: 1080px) {
  .sd-section.sd-offerta-intro > .sd-container {
    width: 82%;
  }
}

.sd-offerta-intro .sd-section__heading {
  max-width: none;
}

.sd-offerta-intro .sd-section__content {
  width: 100%;
  max-width: none;
  display: block;
  text-align: left;
}

.sd-offerta-intro .sd-section__content p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
}

.sd-offerta-intro .sd-section__content p + p {
  margin-top: 14px;
}

@media (min-width: 768px) {
  .sd-offerta-intro .sd-section__content p + p {
    margin-top: 16px;
  }
}

/* ============================================
   OFFER DETAILS
   ============================================ */
.sd-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .sd-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1080px) {
  .sd-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
  }
}

.sd-card {
  padding: 24px;
  border: 1px solid var(--sd-color-border);
  border-radius: var(--sd-radius-md);
  background: #FFFFFF;
  box-shadow: var(--sd-shadow-soft);
}

@media (min-width: 768px) {
  .sd-card {
    padding: 28px;
  }
}

.sd-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

@media (min-width: 768px) {
  .sd-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
  }
}

/* ============================================
   SECTION TRANSITIONS
   ============================================ */
.sd-section-transition {
  width: 100%;
  height: 84px;
  pointer-events: none;
}

@media (min-width: 640px) {
  .sd-section-transition {
    height: 100px;
  }
}

@media (min-width: 1080px) {
  .sd-section-transition {
    height: 120px;
  }
}

.sd-section-transition--to-dark {
  background: linear-gradient(
    180deg,
    var(--sd-color-bg-light) 0%,
    rgb(220, 224, 229) 35%,
    rgb(145, 154, 167) 65%,
    var(--sd-color-bg-dark) 100%
  );
}

.sd-section-transition--to-light {
  background: linear-gradient(
    180deg,
    var(--sd-color-bg-dark) 0%,
    rgb(146, 154, 166) 35%,
    rgb(220, 224, 229) 65%,
    var(--sd-color-bg-light) 100%
  );
}

/* ============================================
   CTA HOME
   ============================================ */
.sd-cta-home__inner {
  max-width: 840px;
  padding: 24px;
  border: 1px solid var(--sd-color-border);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: var(--sd-shadow-soft);
}

@media (min-width: 640px) {
  .sd-cta-home__inner {
    padding: 32px;
    border-radius: var(--sd-radius-lg);
  }
}

@media (min-width: 820px) {
  .sd-cta-home__inner {
    padding: 48px;
  }
}

.sd-cta-home__inner h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 4vw, 54px);
}

@media (min-width: 768px) {
  .sd-cta-home__inner h2 {
    margin-bottom: 20px;
    font-size: clamp(30px, 4vw, 54px);
  }
}

.sd-cta-home__inner p:not(.sd-eyebrow) {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .sd-cta-home__inner p:not(.sd-eyebrow) {
    margin-bottom: 28px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.sd-footer {
  padding: 60px 0 20px 0;
  background: var(--sd-color-bg-light);
  color: var(--sd-color-text);
}

@media (min-width: 768px) {
  .sd-footer {
    padding: 80px 0 28px 0;
  }
}

@media (min-width: 1080px) {
  .sd-footer {
    padding: 96px 0 28px 0;
  }
}

.sd-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  border-top: 1px solid var(--sd-color-border);
  padding-top: 32px;
}

@media (min-width: 640px) {
  .sd-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    padding-top: 36px;
  }
}

@media (min-width: 1080px) {
  .sd-footer__top {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding-top: 40px;
  }
}

.sd-footer__brand {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .sd-footer__brand {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.sd-logo-footer {
  height: 32px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .sd-logo-footer {
    height: 36px;
    margin-bottom: 24px;
  }
}

.sd-footer__col--info p {
  margin-bottom: 14px;
  font-family: var(--sd-font-mono);
  font-size: 14px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .sd-footer__col--info p {
    margin-bottom: 16px;
    font-size: 15px;
  }
}

.sd-footer__col h3 {
  margin-bottom: 16px;
  font-family: var(--sd-font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .sd-footer__col h3 {
    margin-bottom: 20px;
    font-size: 15px;
  }
}

.sd-footer__col ul {
  display: grid;
  gap: 8px;
}

@media (min-width: 768px) {
  .sd-footer__col ul {
    gap: 10px;
  }
}

.sd-footer__col a {
  font-family: var(--sd-font-mono);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(15, 23, 32, 0.78);
  transition: opacity var(--sd-transition);
}

@media (min-width: 768px) {
  .sd-footer__col a {
    font-size: 15px;
  }
}

.sd-footer__col a:hover {
  opacity: 0.65;
}

.sd-footer__bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--sd-color-border);
}

@media (min-width: 768px) {
  .sd-footer__bottom {
    margin-top: 48px;
    padding-top: 20px;
  }
}

.sd-footer__bottom p {
  font-family: var(--sd-font-mono);
  font-size: 11px;
  color: rgba(15, 23, 32, 0.65);
  text-align: center;
}

@media (min-width: 768px) {
  .sd-footer__bottom p {
    font-size: 12px;
  }
}

/* FOOTER - CERTIFICAZIONI E SOCIAL */
.sd-footer__certifications {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .sd-footer__certifications {
    gap: 20px;
    margin-top: 28px;
    margin-bottom: 28px;
  }
}

.sd-footer__cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.sd-footer__cert-item:hover {
  opacity: 0.7;
}

.sd-footer__cert-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sd-footer__cert-item img {
    width: 70px;
    height: 70px;
  }
}

.sd-footer__cert-item span {
  font-family: var(--sd-font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--sd-color-rich-black);
}

@media (min-width: 768px) {
  .sd-footer__cert-item span {
    font-size: 18px;
  }
}

.sd-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .sd-footer__social {
    gap: 20px;
    margin-top: 28px;
  }
}

.sd-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--sd-color-rich-black);
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .sd-footer__social a {
    width: 44px;
    height: 44px;
  }
}

.sd-footer__social a:hover {
  color: var(--sd-color-sevendata-red);
}

.sd-footer__social svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   HOME INTRO SECTION
   ============================================ */
.sd-home-intro {
  padding: 40px 0 60px;
  background-color: #ffffff;
  overflow: visible;
}

@media (min-width: 768px) {
  .sd-home-intro {
    padding: 60px 0 80px;
  }
}

@media (min-width: 992px) {
  .sd-home-intro {
    padding: 80px 0 220px;
  }
}

.sd-home-intro__header {
  margin-bottom: 40px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .sd-home-intro__header {
    margin-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .sd-home-intro__header {
    margin-bottom: 80px;
    max-width: 92%;
  }
}

.sd-home-intro__title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
}

@media (min-width: 480px) {
  .sd-home-intro__title {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .sd-home-intro__title {
    font-size: 38px;
  }
}

@media (min-width: 992px) {
  .sd-home-intro__title {
    font-size: 70px;
    line-height: 1.2;
  }
}

.sd-home-intro__title strong {
  color: var(--sd-color-sevendata-red);
  font-weight: 400;
}

.sd-home-intro__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
  overflow: visible;
}

@media (min-width: 768px) {
  .sd-home-intro__row {
    gap: 50px;
    margin-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .sd-home-intro__row {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
  }
}

@media (min-width: 1200px) {
  .sd-home-intro__row {
    margin-bottom: 100px;
  }
}

.sd-home-intro__row:last-child {
  margin-bottom: 0;
}

.sd-home-intro__subtitle {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

@media (min-width: 768px) {
  .sd-home-intro__subtitle {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .sd-home-intro__subtitle {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .sd-home-intro__subtitle {
    font-size: 38px;
    line-height: 1.3;
    margin: 0 30px 24px 0;
  }
}

.sd-home-intro__subtitle strong {
  color: var(--sd-color-sevendata-red);
  font-weight: 400;
}

.sd-home-intro__col--text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sd-color-deep-ocean);
  margin: 0;
  font-family: var(--sd-font-mono);
}

@media (min-width: 992px) {
  .sd-home-intro__col--text p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.sd-home-intro__col--media {
  position: relative;
  overflow: visible;
  min-height: 200px;
}

@media (min-width: 768px) {
  .sd-home-intro__col--media {
    min-height: 300px;
  }
}

@media (min-width: 992px) {
  .sd-home-intro__col--media {
    min-height: 400px;
  }
}

.sd-home-intro__col--media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Layout row: image right */
.sd-home-intro__row--image-right .sd-home-intro__col--media {
  order: 1;
}

.sd-home-intro__row--image-right .sd-home-intro__col--text {
  order: 2;
}

@media (min-width: 992px) {
  .sd-home-intro__row--image-right .sd-home-intro__col--media {
    order: 2;
  }

  .sd-home-intro__row--image-right .sd-home-intro__col--text {
    order: 1;
  }
}

/* Mobile: immagine ridimensionata */
.sd-home-intro__row--image-right .sd-home-intro__col--media img {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .sd-home-intro__row--image-right .sd-home-intro__col--media img {
    position: absolute;
    right: -100px;
    top: 65%;
    transform: translateY(-50%);
    width: 120%;
    max-width: none;
  }
}

@media (min-width: 1200px) {
  .sd-home-intro__row--image-right .sd-home-intro__col--media img {
    right: -200px;
    width: 140%;
  }
}

/* Layout row: image left */
.sd-home-intro__row--image-left .sd-home-intro__col--media {
  order: 1;
}

.sd-home-intro__row--image-left .sd-home-intro__col--text {
  order: 2;
  padding-top: 0;
}

@media (min-width: 768px) {
  .sd-home-intro__row--image-left .sd-home-intro__col--text {
    padding-top: 100px;
  }
}

@media (min-width: 992px) {
  .sd-home-intro__row--image-left .sd-home-intro__col--text {
    padding-top: 200px;
  }
}

@media (min-width: 1200px) {
  .sd-home-intro__row--image-left .sd-home-intro__col--text {
    padding-top: 300px;
  }
}

.sd-home-intro__row--image-left .sd-home-intro__col--media img {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .sd-home-intro__row--image-left .sd-home-intro__col--media img {
    position: absolute;
    left: -150px;
    top: 65%;
    transform: translateY(-45%);
    width: 130%;
    max-width: none;
  }
}

@media (min-width: 1200px) {
  .sd-home-intro__row--image-left .sd-home-intro__col--media img {
    left: -290px;
    width: 150%;
  }
}

/* ============================================
   HOME EXCELLENCE SECTION
   ============================================ */
.sd-home-excellence {
  padding: 60px 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .sd-home-excellence {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .sd-home-excellence {
    padding: 100px 0;
  }
}

/* Header Section */
.sd-home-excellence__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .sd-home-excellence__header {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
}

.sd-home-excellence__main-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0;
}
@media (min-width: 768px) {
  .sd-home-excellence__main-title {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .sd-home-excellence__main-title {
    font-size: 64px;
    line-height: 1.1;
  }
}

.sd-home-excellence__intro-text {
  display: flex;
  align-items: center;
}
.sd-home-excellence__intro-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
  font-family: var(--sd-font-mono);
}
@media (min-width: 992px) {
  .sd-home-excellence__intro-text p {
    font-size: 15px;
  }
}

/* Navigation Controls */
.sd-home-excellence__navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .sd-home-excellence__navigation {
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .sd-home-excellence__navigation {
    margin-bottom: 80px;
  }
}

.sd-home-excellence__nav-arrow {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #1a1a1a;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-home-excellence__nav-arrow:hover:not(:disabled) {
  color: var(--sd-color-sevendata-red);
  transform: scale(1.1);
}
.sd-home-excellence__nav-arrow:active:not(:disabled) {
  transform: scale(0.95);
}
.sd-home-excellence__nav-arrow:disabled,
.sd-home-excellence__nav-arrow--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  color: #ccc;
}

/* Progress Bar */
.sd-home-excellence__progress-bar {
  flex: 1;
  height: 2px;
  background-color: #e0e0e0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.sd-home-excellence__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--sd-color-sevendata-red);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Slider Wrapper */
.sd-home-excellence__slider-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
@media (min-width: 768px) {
  .sd-home-excellence__slider-wrapper {
    min-height: 450px;
  }
}
@media (min-width: 992px) {
  .sd-home-excellence__slider-wrapper {
    min-height: 500px;
  }
}

/* Slide Base Styles */
.sd-home-excellence__slide {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transform: translateX(20px);
}

/* Active Slide */
.sd-home-excellence__slide--active {
  display: block;
  opacity: 1;
  position: relative;
  transform: translateX(0);
  animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Slide Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}

/* Slide Content Layout */
.sd-home-excellence__slide-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .sd-home-excellence__slide-content {
    gap: 50px;
  }
}
@media (min-width: 992px) {
  .sd-home-excellence__slide-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Slide Media */
.sd-home-excellence__slide-media {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.sd-home-excellence__slide-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.sd-home-excellence__slide--active .sd-home-excellence__slide-media img {
  animation: imageZoomIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes imageZoomIn {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Slide Text Content */
.sd-home-excellence__slide-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .sd-home-excellence__slide-text {
    gap: 24px;
  }
}

.sd-home-excellence__slide-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--sd-color-rich-black);
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (min-width: 768px) {
  .sd-home-excellence__slide-title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .sd-home-excellence__slide-title {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .sd-home-excellence__slide-title {
    font-size: 42px;
  }
}

/* Animazione staggered per il titolo */
.sd-home-excellence__slide--active .sd-home-excellence__slide-title {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
  opacity: 0;
}

.sd-home-excellence__slide-description p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: var(--sd-color-rich-black);
  font-family: var(--sd-font-mono);
}
@media (min-width: 992px) {
  .sd-home-excellence__slide-description p {
    font-size: 16px;
  }
}

/* Animazione staggered per la descrizione */
.sd-home-excellence__slide--active .sd-home-excellence__slide-description {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Button */
.sd-home-excellence__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--sd-color-sevendata-red);
  color: var(--sd-color-total-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--sd-font-heading);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    clip-path 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 60%);
  width: 100%;
  max-width: 280px;
}
@media (min-width: 768px) {
  .sd-home-excellence__cta {
    padding: 12px 20px;
    font-size: 16px;
    width: 65%;
  }
}

/* Animazione staggered per il CTA */
.sd-home-excellence__slide--active .sd-home-excellence__cta {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  opacity: 0;
}

.sd-home-excellence__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80px;
  background: #e86a4d;
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
@media (min-width: 768px) {
  .sd-home-excellence__cta::before {
    width: 100px;
  }
}

.sd-home-excellence__cta:hover {
  background: var(--sd-color-ripe-tomato);
}
.sd-home-excellence__cta:hover::before {
  width: 50%;
}

.sd-home-excellence__cta svg {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(0deg);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sd-home-excellence__cta svg {
    width: 18px;
    height: 18px;
  }
}

.sd-home-excellence__cta:hover svg {
  transform: rotate(45deg);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .sd-home-excellence__slide,
  .sd-home-excellence__slide--active,
  .sd-home-excellence__slide-media img,
  .sd-home-excellence__slide-title,
  .sd-home-excellence__slide-description,
  .sd-home-excellence__cta {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  
  .sd-home-excellence__slide--active {
    opacity: 1;
    transform: none;
  }
}

/* Loading State (opzionale) */
.sd-home-excellence__slider-wrapper.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Accessibility: Focus Styles */
.sd-home-excellence__nav-arrow:focus-visible {
  outline: 2px solid var(--sd-color-sevendata-red);
  outline-offset: 4px;
  border-radius: 4px;
}

.sd-home-excellence__cta:focus-visible {
  outline: 3px solid var(--sd-color-sevendata-red);
  outline-offset: 4px;
}

/* ============================================
   HOME DATI TECH AI SECTION
   ============================================ */
.sd-home-datitechai {
  padding: 60px 0;
  background-color: #2d3e50;
  position: relative;
}

@media (min-width: 768px) {
  .sd-home-datitechai {
    padding: 80px 0;
  }
}

@media (min-width: 992px) {
  .sd-home-datitechai {
    padding: 100px 0;
  }
}

.sd-home-datitechai__header {
  text-align: center;
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  .sd-home-datitechai__header {
    margin-bottom: 80px;
  }
}

.sd-home-datitechai__title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 16px 0;
}

@media (min-width: 480px) {
  .sd-home-datitechai__title {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .sd-home-datitechai__title {
    font-size: 48px;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .sd-home-datitechai__title {
    font-size: 110px;
    line-height: 1.1;
  }
}

.sd-home-datitechai__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (min-width: 992px) {
  .sd-home-datitechai__subtitle {
    font-size: 35px;
    padding: 0;
  }
}

.sd-home-datitechai__list {
  display: flex;
  flex-direction: column;
}

.sd-home-datitechai__item {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  min-height: 200px;
}

@media (min-width: 768px) {
  .sd-home-datitechai__item {
    padding: 35px 0;
    min-height: 240px;
  }
}

@media (min-width: 992px) {
  .sd-home-datitechai__item {
    padding: 40px 0;
    min-height: 270px;
  }
}

.sd-home-datitechai__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sd-home-datitechai__item:hover {
  background-color: #000000;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  margin-right: -20px;
}

@media (min-width: 992px) {
  .sd-home-datitechai__item:hover {
    padding-left: 40px;
    padding-right: 40px;
    margin-left: -40px;
    margin-right: -40px;
  }
}

.sd-home-datitechai__item-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 992px) {
  .sd-home-datitechai__item-content {
    grid-template-columns: 60% 40%;
    gap: 60px;
  }
}

.sd-home-datitechai__item-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .sd-home-datitechai__item-left {
    gap: 24px;
  }
}

@media (min-width: 992px) {
  .sd-home-datitechai__item-left {
    gap: 30px;
  }
}

.sd-home-datitechai__item-number {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sd-font-mono);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sd-home-datitechai__item-number {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .sd-home-datitechai__item-number {
    font-size: 14px;
  }
}

.sd-home-datitechai__item-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 300;
  color: #ffffff;
  margin: 0;
  transition: transform 0.3s ease;
  flex: 1;
}

@media (min-width: 480px) {
  .sd-home-datitechai__item-title {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .sd-home-datitechai__item-title {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .sd-home-datitechai__item-title {
    font-size: 75px;
  }
}

.sd-home-datitechai__item:hover .sd-home-datitechai__item-title {
  transform: translateX(10px);
}

.sd-home-datitechai__item-arrow {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #ffffff;
}

@media (min-width: 768px) {
  .sd-home-datitechai__item-arrow {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 992px) {
  .sd-home-datitechai__item-arrow {
    width: 32px;
    height: 32px;
  }
}

.sd-home-datitechai__item-arrow svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sd-home-datitechai__item-arrow .arrow-diagonal {
  opacity: 1;
  transform: scale(1);
}

.sd-home-datitechai__item-arrow .arrow-right {
  opacity: 0;
  transform: scale(0.8);
}

.sd-home-datitechai__item:hover .arrow-diagonal {
  opacity: 0;
  transform: scale(0.8);
}

.sd-home-datitechai__item:hover .arrow-right {
  opacity: 1;
  transform: scale(1);
}

.sd-home-datitechai__item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (min-width: 992px) {
  .sd-home-datitechai__item-right {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.sd-home-datitechai__item-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-family: var(--sd-font-mono);
  padding-right: 0;
}

@media (min-width: 992px) {
  .sd-home-datitechai__item-description {
    font-size: 20px;
    padding-right: 40px;
  }
}

/* ============================================
   HOME CASES SECTION - LOGO VERSION
   ============================================ */
.sd-home-cases {
  padding: 60px 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .sd-home-cases {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .sd-home-cases {
    padding: 100px 0;
  }
}

.sd-home-cases__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .sd-home-cases__header {
    margin-bottom: 50px;
  }
}

.sd-home-cases__title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0;
}
@media (min-width: 480px) {
  .sd-home-cases__title {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .sd-home-cases__title {
    font-size: 45px;
  }
}
@media (min-width: 992px) {
  .sd-home-cases__title {
    font-size: 72px;
    line-height: 1.1;
  }
}

.sd-home-cases__navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .sd-home-cases__navigation {
    gap: 30px;
    margin-bottom: 60px;
  }
}

.sd-home-cases__nav-arrow {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #1a1a1a;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-home-cases__nav-arrow:hover:not(:disabled) {
  color: var(--sd-color-sevendata-red);
  transform: scale(1.1);
}

.sd-home-cases__nav-arrow:disabled {
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.3;
}

.sd-home-cases__progress-bar {
  flex: 1;
  height: 2px;
  background-color: #e0e0e0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.sd-home-cases__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--sd-color-sevendata-red);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  width: 50%;
}

.sd-home-cases__carousel-wrapper {
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
}
@media (min-width: 768px) {
  .sd-home-cases__carousel-wrapper {
    margin-bottom: 60px;
  }
}

.sd-home-cases__carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
}
@media (min-width: 768px) {
  .sd-home-cases__carousel {
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .sd-home-cases__carousel {
    gap: 50px;
  }
}

.sd-home-cases__logo-item {
  flex: 0 0 calc(20% - 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--sd-color-broken-ice);
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 120px;
}
@media (min-width: 768px) {
  .sd-home-cases__logo-item {
    flex: 0 0 calc(20% - 32px);
    min-height: 140px;
    padding: 25px;
  }
}
@media (min-width: 992px) {
  .sd-home-cases__logo-item {
    flex: 0 0 calc(20% - 40px);
    min-height: 160px;
    padding: 30px;
  }
}

.sd-home-cases__logo-item:hover {
  background: var(--sd-color-broken-ice);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sd-home-cases__logo-item img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .sd-home-cases__logo-item img {
    max-height: 100px;
  }
}
@media (min-width: 992px) {
  .sd-home-cases__logo-item img {
    max-height: 120px;
  }
}

.sd-home-cases__logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* CTA Buttons */
.sd-home-cases__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .sd-home-cases__cta-group {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .sd-home-cases__cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}

.sd-home-cases__cta--primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 35px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--sd-font-heading);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    clip-path 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 60%);
  width: 100%;
  max-width: 100%;
  background: var(--sd-color-sevendata-red);
  color: var(--sd-color-total-white);
}

@media (max-width: 767px) {
  .sd-home-cases__cta--inline {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .sd-home-cases__cta--inline {
    width: 55% !important;
  }
  .sd-home-cases__cta--primary {
    gap: 20px;
    padding: 20px 40px;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .sd-home-cases__cta--primary {
    gap: 30px;
    padding: 24px 50px;
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .sd-home-cases__cta--primary {
    gap: 40px;
    padding: 28px 60px;
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .sd-home-cases__cta--primary {
    font-size: 30px;
  }
}

.sd-home-cases__cta--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  background: #e86a4d;
}

@media (min-width: 768px) {
  .sd-home-cases__cta--primary::before {
    width: 70px;
  }
}
@media (min-width: 992px) {
  .sd-home-cases__cta--primary::before {
    width: 80px;
  }
}
@media (min-width: 1200px) {
  .sd-home-cases__cta--primary::before {
    width: 90px;
  }
}
@media (min-width: 1400px) {
  .sd-home-cases__cta--primary::before {
    width: 100px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  }
}

.sd-home-cases__cta--primary:hover {
  background: var(--sd-color-ripe-tomato);
}

.sd-home-cases__cta--primary:hover::before {
  width: 50%;
}

.sd-home-cases__cta--primary svg {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(0deg);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sd-home-cases__cta--primary svg {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 992px) {
  .sd-home-cases__cta--primary svg {
    width: 32px;
    height: 32px;
  }
}

.sd-home-cases__cta--primary:hover svg {
  transform: rotate(45deg);
}





/* ============================================
   HOME DATALAKE SECTION
   ============================================ */
.sd-home-datalake {
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
}

@media (min-width: 768px) {
  .sd-home-datalake {
    padding: 80px 0;
  }
}

@media (min-width: 992px) {
  .sd-home-datalake {
    padding: 80px 0 100px;
  }
}

.sd-home-datalake__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .sd-home-datalake__header {
    gap: 6px;
    margin-bottom: 80px;
  }
}

.sd-home-datalake__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sd-home-datalake__logo span {
  font-family: var(--sd-font-heading);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

@media (min-width: 480px) {
  .sd-home-datalake__logo span {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .sd-home-datalake__logo {
    gap: 12px;
  }
  
  .sd-home-datalake__logo span {
    font-size: 42px;
    line-height: 1;
  }
}

@media (min-width: 992px) {
  .sd-home-datalake__logo {
    gap: 32px;
  }
  
  .sd-home-datalake__logo span {
    font-size: 90px;
  }
}

.sd-home-datalake__logo img {
  width: auto;
  height: 50px;
  display: block;
}

@media (min-width: 768px) {
  .sd-home-datalake__logo img {
    height: 110px;
  }
}

.sd-home-datalake__logo img {
  width: auto;
  height: 50px;
  display: block;
}

@media (min-width: 768px) {
  .sd-home-datalake__logo img {
    height: 110px;
  }
}

.sd-home-datalake__title {
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0;
  padding-top:20px
}

@media (min-width: 480px) {
  .sd-home-datalake__title {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .sd-home-datalake__title {
    font-size: 42px;
    line-height: 1.2;
  }
}

@media (min-width: 992px) {
  .sd-home-datalake__title {
    font-size: 55px;
  }
}

.sd-home-datalake__main-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

@media (min-width: 768px) {
  .sd-home-datalake__main-content {
    gap: 60px;
    margin-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .sd-home-datalake__main-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px 100px;
    margin-bottom: 100px;
  }
}

.sd-home-datalake__stat-visual {
  justify-self: center;
  position: relative;
}

.sd-home-datalake__stat-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

@media (min-width: 768px) {
  .sd-home-datalake__stat-content {
    gap: 20px;
  }
}

/* Posizionamenti responsive (solo su desktop) */
@media (min-width: 992px) {
  /* Prima riga (RIGA 1) */
  .sd-home-datalake__stat-visual:nth-child(1) {
    width: 140%;
    top: -100px;
    left: -60px;
  }

  .sd-home-datalake__stat-content:nth-child(2) {
    top: -120px;
  }

  /* Seconda riga (RIGA 2) */
  .sd-home-datalake__stat-content:nth-child(3),
  .sd-home-datalake__stat-visual:nth-child(4) {
    top: -390px;
  }

  .sd-home-datalake__stat-visual:nth-child(4) {
    width: 130%;
    left: -10px;
  }
}

@media (min-width: 1200px) {
  .sd-home-datalake__stat-visual:nth-child(1) {
    width: 160%;
    top: -210px;
    left: -80px;
  }

  .sd-home-datalake__stat-content:nth-child(2) {
    top: -240px;
  }

  .sd-home-datalake__stat-content:nth-child(3),
  .sd-home-datalake__stat-visual:nth-child(4) {
    top: -580px;
  }

  .sd-home-datalake__stat-visual:nth-child(4) {
    width: 140%;
    top: -650px;
    left: -10px;
  }
}

/* Illustrazioni */
.sd-home-datalake__illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
mix-blend-mode: multiply;
}

@media (max-width: 991px) {
  .sd-home-datalake__illustration {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
}

.sd-home-datalake__illustration--left {
  transform: rotate(-90deg);
}

.sd-home-datalake__illustration--right {
  transform: rotate(90deg);
}

/* Testo statistiche */
.sd-home-datalake__stat-description {
  font-size: 13px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
  font-family: var(--sd-font-mono);
  max-width: 500px;
}

@media (min-width: 768px) {
  .sd-home-datalake__stat-description {
    font-size: 16px;
    line-height: 1.4;
  }
}

.sd-home-datalake__stat-number {
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: -2px;
}

@media (min-width: 480px) {
  .sd-home-datalake__stat-number {
    font-size: 64px;
  }
}

@media (min-width: 768px) {
  .sd-home-datalake__stat-number {
    font-size: 80px;
    letter-spacing: -3px;
  }
}

@media (min-width: 992px) {
  .sd-home-datalake__stat-number {
    font-size: 150px;
    line-height: 0.9;
    letter-spacing: -4px;
  }
}

/* Metriche */
.sd-home-datalake__metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sd-home-datalake__metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .sd-home-datalake__metrics {
    margin: -500px auto 0 auto;
  }
}

@media (min-width: 1200px) {
  .sd-home-datalake__metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: -800px auto 0 auto;
  }
}

.sd-home-datalake__metric-card {
  padding: 20px 18px;
  background-color: #f0f2f4;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .sd-home-datalake__metric-card {
    padding: 24px 20px;
  }
}

@media (min-width: 992px) {
  .sd-home-datalake__metric-card {
    padding: 14px 24px;
  }
}

.sd-home-datalake__metric-card::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background-color: var(--sd-color-sevendata-red);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .sd-home-datalake__metric-card::before {
    left: 14px;
    top: 24px;
    bottom: 24px;
  }
}

@media (min-width: 992px) {
  .sd-home-datalake__metric-card::before {
    left: 16px;
    top: 10px;
    bottom: 10px;
  }
}

.sd-home-datalake__metric-card:hover {
  background-color: #e5e7ea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sd-home-datalake__metric-number {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 300;
  color: #4a4a4a;
  margin-bottom: 10px;
  letter-spacing: -1px;
  font-family: var(--sd-font-heading);
  padding-left: 10px;
}

@media (min-width: 768px) {
  .sd-home-datalake__metric-number {
    font-size: 42px;
    margin-bottom: 12px;
  }
}

@media (min-width: 992px) {
  .sd-home-datalake__metric-number {
    font-size: 40px;
  }
}

.sd-home-datalake__metric-label {
  font-size: 14px;
  line-height: 1.4;
  color: #4a4a4a;
  margin: 0;
  font-family: var(--sd-font-mono);
  padding-left: 10px;
}

@media (min-width: 768px) {
  .sd-home-datalake__metric-label {
    font-size: 16px;
  }
}

/* ============================================
   HOME BUYER SECTION
   ============================================ */
.sd-home-buyer {
  padding: 60px 0;
  background-color: #4a5568;
  position: relative;
}

@media (min-width: 768px) {
  .sd-home-buyer {
    padding: 80px 0;
  }
}

@media (min-width: 992px) {
  .sd-home-buyer {
    padding: 100px 0;
  }
}

.sd-home-buyer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .sd-home-buyer__wrapper {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }
}

.sd-home-buyer__intro {
  padding-right: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .sd-home-buyer__intro {
    padding-right: 40px;
    text-align: left;
  }
}

.sd-home-buyer__title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 300;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 480px) {
  .sd-home-buyer__title {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  .sd-home-buyer__title {
    font-size: 38px;
  }
}

@media (min-width: 992px) {
  .sd-home-buyer__title {
    font-size: 52px;
    line-height: 1.2;
  }
}

.sd-home-buyer__list {
  display: flex;
  flex-direction: column;
}

.sd-home-buyer__item {
  position: relative;
  display: block;
  text-decoration: none;
  color: #ffffff;
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

.sd-home-buyer__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sd-home-buyer__item:hover {
  background-color: #000000;
}

.sd-home-buyer__item-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 15px;
  position: relative;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .sd-home-buyer__item-content {
    gap: 20px;
    padding: 25px 20px;
  }
}

@media (min-width: 992px) {
  .sd-home-buyer__item-content {
    gap: 30px;
    padding: 30px 35px;
    flex-wrap: nowrap;
  }
}

@media (min-width: 1200px) {
  .sd-home-buyer__item-content {
    padding: 40px 50px;
  }
}

.sd-home-buyer__item-number {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  min-width: 25px;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .sd-home-buyer__item-number {
    font-size: 16px;
    min-width: 30px;
  }
}

@media (min-width: 992px) {
  .sd-home-buyer__item-number {
    font-size: 20px;
    min-width: 40px;
  }
}

.sd-home-buyer__item:hover .sd-home-buyer__item-number {
  color: rgba(255, 255, 255, 0.9);
}

.sd-home-buyer__item-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  color: #ffffff;
  margin: 0;
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
  flex-basis: 100%;
}

@media (min-width: 480px) {
  .sd-home-buyer__item-title {
    font-size: 22px;
  }
}

@media (min-width: 768px) {
  .sd-home-buyer__item-title {
    font-size: 26px;
  }
}

@media (min-width: 992px) {
  .sd-home-buyer__item-title {
    font-size: 32px;
    letter-spacing: 1px;
    flex-basis: auto;
  }
}

@media (min-width: 1200px) {
  .sd-home-buyer__item-title {
    font-size: 42px;
  }
}

.sd-home-buyer__item:hover .sd-home-buyer__item-title {
  transform: translateX(10px);
}

.sd-home-buyer__item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
}

@media (min-width: 768px) {
  .sd-home-buyer__item-arrow {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 992px) {
  .sd-home-buyer__item-arrow {
    width: 32px;
    height: 32px;
  }
}

.sd-home-buyer__item-arrow svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sd-home-buyer__item-arrow .arrow-diagonal {
  opacity: 1;
  transform: scale(1);
}

.sd-home-buyer__item-arrow .arrow-right {
  opacity: 0;
  transform: scale(0.8);
}

.sd-home-buyer__item:hover .arrow-diagonal {
  opacity: 0;
  transform: scale(0.8);
}

.sd-home-buyer__item:hover .arrow-right {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   HOME LAST CTA SECTION
   ============================================ */
.sd-home-last-cta {
  padding: 60px 0;
  background-color: var(--sd-color-total-white);
  position: relative;
}

@media (min-width: 768px) {
  .sd-home-last-cta {
    padding: 80px 0;
  }
}

@media (min-width: 992px) {
  .sd-home-last-cta {
    padding: 100px 0;
  }
}

@media (min-width: 1200px) {
  .sd-home-last-cta {
    padding: 140px 0;
  }
}

.sd-home-last-cta__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

@media (min-width: 768px) {
  .sd-home-last-cta__content {
    gap: 35px;
  }
}

@media (min-width: 992px) {
  .sd-home-last-cta__content {
    gap: 40px;
  }
}

.sd-home-last-cta__title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  text-align: center;
}

@media (min-width: 480px) {
  .sd-home-last-cta__title {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .sd-home-last-cta__title {
    font-size: 42px;
    line-height: 1.2;
  }
}

@media (min-width: 992px) {
  .sd-home-last-cta__title {
    font-size: 44px;
  }
}

@media (min-width: 1200px) {
  .sd-home-last-cta__title {
    font-size: 52px;
  }
}

.sd-home-last-cta__description {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .sd-home-last-cta__description {
    max-width: 600px;
    gap: 16px;
    padding: 0 50px;
  }
}

@media (min-width: 992px) {
  .sd-home-last-cta__description {
    max-width: 700px;
  }
}

.sd-home-last-cta__description p {
  font-size: 13px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
  font-family: var(--sd-font-mono);
}

@media (min-width: 768px) {
  .sd-home-last-cta__description p {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .sd-home-last-cta__description p {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .sd-home-last-cta__description p {
    font-size: 16px;
  }
}

.sd-home-last-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 35px;
  background: var(--sd-color-sevendata-red);
  color: var(--sd-color-total-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--sd-font-heading);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    clip-path 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 60%);
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .sd-home-last-cta__button {
    gap: 20px;
    padding: 20px 40px;
    font-size: 20px;
	width: 68%;
    max-width: 68%;
  }
}



@media (min-width: 992px) {
  .sd-home-last-cta__button {
    gap: 30px;
    padding: 24px 50px;
    font-size: 24px;
    width: auto;
  }
}

@media (min-width: 1200px) {
  .sd-home-last-cta__button {
    gap: 40px;
    padding: 28px 60px;
    font-size: 28px;
  }
}

@media (min-width: 1400px) {
  .sd-home-last-cta__button {
    padding: 32px 70px;
    font-size: 32px;
  }
}

.sd-home-last-cta__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  background: #e86a4d;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

@media (min-width: 768px) {
  .sd-home-last-cta__button::before {
    width: 70px;
  }
}

@media (min-width: 992px) {
  .sd-home-last-cta__button::before {
    width: 80px;
  }
}

@media (min-width: 1200px) {
  .sd-home-last-cta__button::before {
    width: 90px;
  }
}

@media (min-width: 1400px) {
  .sd-home-last-cta__button::before {
    width: 100px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  }
}

.sd-home-last-cta__button:hover {
  background: var(--sd-color-ripe-tomato);
}

.sd-home-last-cta__button:hover::before {
  width: 50%;
}

.sd-home-last-cta__button-text {
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.sd-home-last-cta__button-arrow {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sd-home-last-cta__button-arrow {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 992px) {
  .sd-home-last-cta__button-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1200px) {
  .sd-home-last-cta__button-arrow {
    width: 40px;
    height: 40px;
  }
}

.sd-home-last-cta__button:hover .sd-home-last-cta__button-arrow {
  transform: rotate(45deg);
}

.sd-home-last-cta__button-arrow svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .sd-home-last-cta__button-arrow svg {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 992px) {
  .sd-home-last-cta__button-arrow svg {
    width: 32px;
    height: 32px;
  }
}

/* ============================================
   BREADCRUMB HERO (Prodotti + Casi d'uso)
   ============================================ */
.sd-breadcrumb-hero {
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .sd-breadcrumb-hero {
        margin-bottom: 24px;
    }
}
@media (min-width: 992px) {
    .sd-breadcrumb-hero {
        margin-bottom: 32px;
    }
}
.sd-breadcrumb-hero .sd-container {
    width: 90%;
    max-width: none;
    margin: 0 auto;
}
@media (min-width: 820px) {
    .sd-breadcrumb-hero .sd-container {
        width: 82%;
    }
}
.sd-breadcrumb-hero__nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0px;
}
@media (min-width: 768px) {
    .sd-breadcrumb-hero__nav {
        font-size: 14px;
    }
}
.sd-breadcrumb-hero__link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
    font-family: var(--sd-font-mono);
}
.sd-breadcrumb-hero__link:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: underline;
}
.sd-breadcrumb-hero__separator {
    color: rgba(255, 255, 255, 0.5);
}
.sd-breadcrumb-hero__current {
    color: rgba(255, 255, 255, 1);
    font-family: var(--sd-font-mono);
}

