:root {
  --bg: #f4f8ff;
  --bg-soft: #eef5ff;
  --panel: #ffffff;
  --text: #07152b;
  --muted: #5f7189;
  --line: #dbe7f6;
  --blue: #0f62fe;
  --blue-dark: #083ea7;
  --sky: #35b5f2;
  --navy: #071b3a;
  --orange: #ff7a2f;
  --green: #0f9f6e;
  --violet: #7b61ff;
  --shadow: 0 22px 60px rgba(15, 34, 68, 0.10);
  --shadow-soft: 0 12px 30px rgba(15, 34, 68, 0.07);
  --radius: 24px;
  --container: 1180px;
  --brand-gradient: linear-gradient(135deg, #0f62fe 0%, #1f8cff 38%, #35b5f2 62%, #ff7a2f 100%);
  --brand-gradient-hover: linear-gradient(135deg, #083ea7 0%, #0f62fe 36%, #35b5f2 62%, #ff7a2f 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(15,98,254,.12), rgba(53,181,242,.10), rgba(255,122,47,.12));
  --brand-shadow: 0 16px 32px rgba(15, 98, 254, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(53, 181, 242, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, #ffffff 100%);
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

img,
video,
canvas {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

h1,
h2,
h3,
p,
li,
strong,
span,
a {
  overflow-wrap: break-word;
}

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--text);
  background: #f9fbff;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(15, 98, 254, 0.65);
  box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.10);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.container > *,
.hero-grid > *,
.page-hero-grid > *,
.services-hero-grid > *,
.works-hero-grid > *,
.about-hero-grid > *,
.contact-hero .contact-grid > *,
.contact-main-grid > *,
.preventivo-grid > *,
.video-section-panel > * {
  min-width: 0;
}

.section {
  padding: 76px 0;
}

.section-soft {
  padding: 82px 0 72px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2,
.contact-copy h2,
.connection-card h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-head p,
.contact-copy p,
.connection-card p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--brand-gradient-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--orange));
  box-shadow: 0 0 0 5px rgba(255, 122, 47, 0.10);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 850;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--brand-gradient);
  border: 0;
  box-shadow: var(--brand-shadow);
}

.btn-secondary {
  color: var(--blue-dark);
  background: #ffffff;
  border-color: rgba(15, 98, 254, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 98, 254, 0.28);
  filter: saturate(1.05);
}

.btn-secondary:hover {
  border-color: rgba(255, 122, 47, 0.45);
  box-shadow: 0 14px 28px rgba(255, 122, 47, 0.10);
  transform: translateY(-2px);
}

.btn-light {
  color: var(--blue-dark);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.final-cta .btn-light,
.final-cta-inner .btn-light,
.cta-panel .btn-light {
  color: var(--blue-dark);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.final-cta .btn-light:hover,
.final-cta-inner .btn-light:hover,
.cta-panel .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 122, 47, 0.16);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(219, 231, 246, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  box-shadow: 0 14px 30px rgba(15, 98, 254, 0.18);
}

.brand-logo {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 98, 254, 0.14);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #203554;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

/* Scrolling brand bar */
.lux-bar {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #ffffff;
  border-bottom: 1px solid rgba(219, 232, 247, 0.9);
  padding: clamp(12px, 3vw, 25px) 0;
  display: flex;
  justify-content: center;
}

.lux-scroll {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 6vw, 60px);
  font-weight: 600;
  color: #1A4B7A;
  letter-spacing: clamp(0.5px, 0.3vw, 1.5px);
  text-shadow:
    0 0 10px #8BD4FF,
    0 0 20px rgba(94, 184, 255, 0.6);
  animation: slideLux 28s linear infinite;
}

.lux-scroll span {
  padding-right: clamp(30px, 6vw, 80px);
}

@keyframes slideLux {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .lux-scroll {
    animation-duration: 22s;
  }
}

/* Hero */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 138px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-mobile-consult {
  display: none;
}

/* Home - vetrina soluzioni pronte */
.ready-solutions-section {
  position: relative;
  padding: clamp(74px, 8vw, 112px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(53, 181, 242, 0.18), transparent 28%),
    radial-gradient(circle at 94% 10%, rgba(255, 122, 47, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.ready-solutions-section::before {
  content: "";
  position: absolute;
  inset: 24px clamp(10px, 4vw, 44px);
  border: 1px dashed rgba(15, 98, 254, 0.16);
  border-radius: 38px;
  pointer-events: none;
}

.ready-solutions-hero,
.ready-solutions-note,
.ready-solutions-grid,
.ready-solutions-cta {
  position: relative;
  z-index: 1;
}

.ready-solutions-hero {
  max-width: 940px;
  margin: 0 auto 28px;
  text-align: center;
}

.ready-solutions-hero h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.ready-solutions-hero h2::after {
  content: "";
  display: block;
  width: 148px;
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.ready-solutions-subtitle {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--navy);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  font-weight: 850;
}

.ready-solutions-intro {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

.ready-solutions-note {
  max-width: 920px;
  margin: 0 auto 34px;
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 122, 47, 0.10), transparent 32%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.ready-solutions-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 21px;
  letter-spacing: -0.03em;
}

.ready-solutions-note span {
  display: block;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 750;
}

.ready-solutions-segment {
  position: relative;
  z-index: 1;
}

.ready-solutions-segment + .ready-solutions-segment {
  margin-top: 38px;
}

.ready-solutions-segment-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0 0 18px;
  padding: 22px 24px;
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 96% 12%, rgba(255, 122, 47, 0.10), transparent 24%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(7, 23, 47, 0.06);
}

.ready-solutions-segment-head > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: var(--brand-gradient);
  font-size: 13px;
  font-weight: 950;
}

.ready-solutions-segment-head h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.ready-solutions-segment-head p {
  max-width: 840px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 750;
}

.ready-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ready-solutions-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.ready-solutions-grid--single .ready-solution-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
}

.ready-solutions-grid--single .ready-solution-media {
  min-height: 360px;
  border-right: 1px solid rgba(219, 232, 247, 0.9);
  border-bottom: 0;
}

.ready-solution-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(7, 23, 47, 0.10);
}

.ready-solution-media {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  border-bottom: 1px solid rgba(219, 232, 247, 0.9);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.9), transparent 15%),
    linear-gradient(135deg, rgba(15, 98, 254, 0.14), rgba(53, 181, 242, 0.18), rgba(255, 122, 47, 0.14));
}

.ready-solution-media::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(15, 98, 254, 0.98), rgba(53, 181, 242, 0.90), rgba(255, 122, 47, 0.86)) 24px 26px / 42% 8px no-repeat,
    linear-gradient(90deg, rgba(7, 27, 58, 0.88), rgba(15, 98, 254, 0.76)) 24px 54px / 58% 18px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)) 24px 96px / 76% 62px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54)) 24px 174px / 58% 32px no-repeat,
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(7, 23, 47, 0.10);
}

.ready-solution-media span {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.ready-solution-media span:nth-child(1) {
  width: 70px;
  height: 70px;
  right: 42px;
  top: 38px;
}

.ready-solution-media span:nth-child(2) {
  width: 160px;
  height: 42px;
  right: 30px;
  bottom: 42px;
}

.ready-solution-media span:nth-child(3) {
  width: 80px;
  height: 8px;
  left: 48px;
  bottom: 36px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.ready-solution-card.elegance .ready-solution-media {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 122, 47, 0.20), transparent 24%),
    linear-gradient(135deg, #fff7fb, #f4f8ff);
}

.ready-solution-card.trend .ready-solution-media {
  background:
    radial-gradient(circle at 82% 18%, rgba(53, 181, 242, 0.24), transparent 26%),
    linear-gradient(135deg, #f7fbff, #fff4ec);
}

.ready-solution-card.urban .ready-solution-media {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 122, 47, 0.20), transparent 24%),
    linear-gradient(135deg, #eef6ff, #ffffff);
}

.ready-solution-card.premium .ready-solution-media {
  background:
    radial-gradient(circle at 82% 18%, rgba(7, 27, 58, 0.16), transparent 26%),
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.ready-solution-card.pizzeria .ready-solution-media {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 122, 47, 0.18), transparent 24%),
    linear-gradient(135deg, #fff8f0, #f5fbff);
}

.ready-solution-card.studio .ready-solution-media {
  background:
    radial-gradient(circle at 80% 20%, rgba(143, 180, 157, 0.20), transparent 24%),
    linear-gradient(135deg, #f7fbf8, #fff8ef);
}

.ready-solution-media {
  isolation: isolate;
}

.ready-solution-frame {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 1280px;
  height: 820px;
  border: 0;
  border-radius: 38px;
  background: #ffffff;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.24);
  transform-origin: center;
  box-shadow: 0 24px 52px rgba(7, 23, 47, 0.14);
}

.ready-solution-media::before {
  z-index: 2;
  inset: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.70));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 -80px 90px rgba(255, 255, 255, 0.76);
}

.ready-solution-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 28px;
  width: 42%;
  max-width: 190px;
  aspect-ratio: 1 / 1.08;
  border-radius: 42% 42% 30% 30%;
  filter: drop-shadow(0 18px 28px rgba(7, 23, 47, 0.16));
}

.ready-solution-card--donna-elegance .ready-solution-media {
  background:
    radial-gradient(circle at 76% 34%, rgba(255, 255, 255, 0.72), transparent 16%),
    radial-gradient(circle at 82% 34%, rgba(160, 92, 68, 0.24), transparent 22%),
    linear-gradient(135deg, #fff8f3 0%, #f6d8ce 48%, #fffefb 100%);
}

.ready-solution-card--donna-elegance .ready-solution-media::before {
  background:
    linear-gradient(90deg, #8a5a44, #d7a96f) 22px 20px / 44% 9px no-repeat,
    linear-gradient(90deg, rgba(71, 48, 39, 0.88), rgba(138, 90, 68, 0.70)) 22px 44px / 56% 18px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 239, 0.74)) 22px 84px / 36% 48px no-repeat,
    linear-gradient(90deg, rgba(215, 169, 111, 0.54), rgba(255, 255, 255, 0.64)) 22px 148px / 50% 28px no-repeat,
    rgba(255, 255, 255, 0.64);
}

.ready-solution-card--donna-elegance .ready-solution-media::after {
  background:
    radial-gradient(circle at 49% 28%, #ffe4cf 0 14%, transparent 15%),
    radial-gradient(circle at 48% 20%, #6c3f32 0 25%, transparent 26%),
    radial-gradient(ellipse at 50% 62%, #e7b990 0 34%, transparent 35%),
    linear-gradient(135deg, rgba(255, 247, 241, 0.86), rgba(238, 199, 183, 0.44));
}

.ready-solution-card--donna-trend .ready-solution-media {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.68), transparent 15%),
    radial-gradient(circle at 82% 28%, rgba(201, 107, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #fff4ff 0%, #f3dcff 44%, #f3fbff 100%);
}

.ready-solution-card--donna-trend .ready-solution-media::before {
  background:
    linear-gradient(90deg, #ff7aef, #35b5f2) 22px 20px / 44% 9px no-repeat,
    linear-gradient(90deg, rgba(120, 51, 173, 0.88), rgba(255, 122, 239, 0.72)) 22px 44px / 56% 18px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(250, 239, 255, 0.74)) 22px 84px / 36% 48px no-repeat,
    linear-gradient(90deg, rgba(53, 181, 242, 0.34), rgba(255, 122, 239, 0.24)) 22px 148px / 50% 28px no-repeat,
    rgba(255, 255, 255, 0.64);
}

.ready-solution-card--donna-trend .ready-solution-media::after {
  background:
    radial-gradient(circle at 50% 28%, #ffd7e9 0 14%, transparent 15%),
    radial-gradient(circle at 45% 19%, #a958d8 0 23%, transparent 24%),
    radial-gradient(ellipse at 50% 66%, #ff8bd6 0 34%, transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.80), rgba(198, 144, 255, 0.42));
}

.ready-solution-card--barber-urban .ready-solution-media {
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 122, 47, 0.24), transparent 22%),
    linear-gradient(135deg, #eef6ff 0%, #dcecff 44%, #ffffff 100%);
}

.ready-solution-card--barber-urban .ready-solution-media::before {
  background:
    linear-gradient(90deg, var(--blue), var(--orange)) 22px 20px / 44% 9px no-repeat,
    linear-gradient(90deg, #071b3a, #0f62fe) 22px 44px / 56% 18px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(232, 241, 255, 0.80)) 22px 84px / 36% 48px no-repeat,
    linear-gradient(90deg, rgba(15, 98, 254, 0.24), rgba(255, 122, 47, 0.18)) 22px 148px / 50% 28px no-repeat,
    rgba(255, 255, 255, 0.64);
}

.ready-solution-card--barber-urban .ready-solution-media::after {
  border-radius: 40% 40% 24% 24%;
  background:
    radial-gradient(circle at 50% 25%, #d7ac86 0 14%, transparent 15%),
    radial-gradient(circle at 50% 19%, #101d2e 0 22%, transparent 23%),
    radial-gradient(ellipse at 50% 59%, #162942 0 34%, transparent 35%),
    linear-gradient(135deg, rgba(7, 27, 58, 0.10), rgba(255, 122, 47, 0.24));
}

.ready-solution-card--barber-premium .ready-solution-media {
  background:
    radial-gradient(circle at 78% 25%, rgba(181, 117, 62, 0.24), transparent 22%),
    linear-gradient(135deg, #071b3a 0%, #102a4d 44%, #f7eee3 100%);
}

.ready-solution-card--barber-premium .ready-solution-media::before {
  background:
    linear-gradient(90deg, #f3c47a, #ff7a2f) 22px 20px / 44% 9px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(243, 196, 122, 0.72)) 22px 44px / 56% 18px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(250, 239, 225, 0.80)) 22px 84px / 36% 48px no-repeat,
    linear-gradient(90deg, rgba(243, 196, 122, 0.34), rgba(255, 255, 255, 0.34)) 22px 148px / 50% 28px no-repeat,
    rgba(255, 255, 255, 0.54);
}

.ready-solution-card--barber-premium .ready-solution-media::after {
  border-radius: 42% 42% 28% 28%;
  background:
    radial-gradient(circle at 50% 25%, #d8ae86 0 14%, transparent 15%),
    radial-gradient(circle at 50% 19%, #0b1323 0 21%, transparent 22%),
    radial-gradient(ellipse at 50% 60%, #c08344 0 34%, transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(201, 131, 68, 0.34));
}

.ready-solution-card--pizzeria-smart .ready-solution-media::after {
  opacity: 0.12;
  border-radius: 30% 30% 44% 44%;
  background:
    radial-gradient(circle at 50% 34%, #f6c45f 0 24%, transparent 25%),
    radial-gradient(circle at 39% 33%, #c53922 0 5%, transparent 6%),
    radial-gradient(circle at 59% 43%, #31945a 0 5%, transparent 6%),
    radial-gradient(circle at 55% 27%, #c53922 0 4%, transparent 5%),
    linear-gradient(135deg, rgba(255, 122, 47, 0.42), rgba(255, 255, 255, 0.18));
}

.ready-solution-card--studio-smart .ready-solution-media::after {
  opacity: 0.14;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(143, 180, 157, 0.58), rgba(255, 255, 255, 0.18)) 18px 18px / 70% 18px no-repeat,
    linear-gradient(90deg, rgba(7, 27, 58, 0.14), rgba(143, 180, 157, 0.34)) 18px 54px / 82% 56px no-repeat,
    linear-gradient(90deg, rgba(255, 122, 47, 0.16), rgba(255, 255, 255, 0.12)) 18px 130px / 54% 24px no-repeat,
    linear-gradient(135deg, rgba(143, 180, 157, 0.26), rgba(255, 255, 255, 0.18));
}

.ready-solution-card .ready-solution-media::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.78));
}

.ready-solution-card .ready-solution-media::after {
  opacity: 0.14;
}

.ready-solution-media .solution-preview-label,
.ready-solution-media .solution-preview-title,
.ready-solution-media .solution-preview-cta {
  z-index: 3;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(7, 23, 47, 0.12);
}

.ready-solution-media .solution-preview-label {
  left: 46px;
  right: auto;
  top: 42px;
  padding: 7px 11px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ready-solution-media .solution-preview-title {
  display: none;
}

.ready-solution-media .solution-preview-cta {
  left: auto;
  right: 34px;
  bottom: 26px;
  padding: 9px 14px;
  color: #ffffff;
  background: var(--brand-gradient);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(15, 98, 254, 0.22);
}

.ready-solution-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.ready-solution-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.052em;
}

.ready-solution-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.ready-solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ready-solution-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(15, 98, 254, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.ready-solution-tags span:first-child {
  color: var(--orange);
  background: rgba(255, 122, 47, 0.10);
}

.ready-solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.ready-solution-actions .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

.ready-solution-actions .btn-automation {
  color: var(--blue-dark);
  border: 1px solid rgba(255, 122, 47, 0.26);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(15, 98, 254, 0.22), rgba(255, 122, 47, 0.34)) border-box;
  box-shadow: 0 12px 26px rgba(255, 122, 47, 0.08);
}

.ready-solution-actions .btn-automation:hover {
  border-color: rgba(255, 122, 47, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 122, 47, 0.12);
}

.ready-solutions-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 122, 47, 0.34), transparent 26%),
    linear-gradient(135deg, var(--blue), var(--sky) 62%, var(--orange));
  box-shadow: 0 24px 60px rgba(15, 98, 254, 0.22);
}

.ready-solutions-cta h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.ready-solutions-cta p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.62;
  font-weight: 750;
}

.ready-solutions-cta .btn {
  flex: 0 0 auto;
}

.ready-solutions-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.ready-solutions-cta .btn-light-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
}

.ready-solutions-cta .btn-light-outline:hover {
  color: var(--blue-dark);
  background: #ffffff;
}

.solution-automation-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.solution-automation-modal.is-open {
  display: flex;
}

.simplify-modal.is-open {
  display: flex;
}

.solution-automation-backdrop,
.simplify-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 58, 0.54);
  backdrop-filter: blur(8px);
}

.solution-automation-dialog,
.simplify-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: clamp(22px, 3.4vw, 34px);
  border: 1px solid rgba(219, 232, 247, 0.95);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 122, 47, 0.12), transparent 24%),
    radial-gradient(circle at 8% 0%, rgba(53, 181, 242, 0.12), transparent 28%),
    #ffffff;
  box-shadow: 0 28px 90px rgba(7, 23, 47, 0.24);
}

.simplify-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.simplify-dialog {
  width: min(820px, 100%);
}

.solution-automation-close,
.simplify-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 98, 254, 0.16);
  border-radius: 50%;
  color: var(--blue-dark);
  background: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.solution-automation-dialog h2,
.simplify-dialog h2 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.solution-automation-dialog h2::after,
.simplify-dialog h2::after {
  content: "";
  display: block;
  width: 118px;
  height: 5px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.solution-automation-text,
.simplify-dialog > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.simplify-helper {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 16px;
  background: #f8fbff;
  font-weight: 800;
}

.solution-automation-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.solution-automation-points li {
  padding: 10px 12px;
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 16px;
  color: var(--text);
  background: #f8fbff;
  font-size: 15px;
  font-weight: 800;
}

.solution-automation-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--orange));
}

.solution-automation-cta {
  margin-top: 22px;
}

.simplify-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.simplify-form .form-row {
  margin: 0;
}

.simplify-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 18px;
  background: #f8fbff;
}

.simplify-checks legend {
  padding: 0 8px;
  color: var(--text);
  font-weight: 950;
}

.simplify-checks label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(219, 232, 247, 0.9);
  border-radius: 14px;
  background: #ffffff;
  line-height: 1.28;
  cursor: pointer;
}

.simplify-checks input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  flex: 0 0 auto;
}

.simplify-checks span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.simplify-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.simplify-submit {
  width: 100%;
}

.simplify-msg {
  min-height: 22px;
  color: var(--blue-dark);
  font-weight: 850;
}

@media (max-width: 980px) {
  .ready-solutions-section {
    padding: 72px 0;
  }

  .ready-solutions-grid {
    grid-template-columns: 1fr;
  }

  .ready-solutions-grid--single .ready-solution-card {
    display: flex;
  }

  .ready-solutions-grid--single .ready-solution-media {
    min-height: 265px;
    border-right: 0;
    border-bottom: 1px solid rgba(219, 232, 247, 0.9);
  }

  .ready-solutions-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ready-solutions-cta-actions,
  .ready-solutions-cta .btn {
    width: 100%;
  }

  .ready-solutions-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .ready-solutions-section {
    padding: 56px 0;
  }

  .ready-solutions-section::before {
    inset: 12px;
    border-radius: 28px;
  }

  .ready-solutions-hero {
    text-align: left;
  }

  .ready-solutions-hero h2 {
    font-size: clamp(38px, 12vw, 56px);
    letter-spacing: -0.055em;
  }

  .ready-solutions-hero h2::after {
    width: 118px;
    margin-left: 0;
    margin-right: 0;
  }

  .ready-solutions-subtitle,
  .ready-solutions-intro {
    margin-left: 0;
    margin-right: 0;
  }

  .ready-solutions-note {
    padding: 18px;
    border-radius: 20px;
  }

  .ready-solutions-segment + .ready-solutions-segment {
    margin-top: 30px;
  }

  .ready-solutions-segment-head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
  }

  .ready-solutions-segment-head > span {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .ready-solution-card {
    border-radius: 24px;
  }

  .ready-solution-media {
    min-height: 210px;
  }

  .ready-solution-media::before {
    inset: 18px;
    border-radius: 20px;
  }

  .ready-solution-media span:nth-child(1) {
    right: 28px;
    top: 30px;
  }

  .ready-solution-media span:nth-child(2) {
    right: 22px;
    bottom: 34px;
    width: 132px;
  }

  .ready-solution-media span:nth-child(3) {
    left: 34px;
  }

  .ready-solution-media .solution-preview-label {
    left: 28px;
    right: auto;
    top: 28px;
    width: auto;
    height: auto;
    font-size: 10px;
  }

  .ready-solution-media .solution-preview-title {
    display: none;
  }

  .ready-solution-media .solution-preview-cta {
    left: auto;
    right: 22px;
    bottom: 22px;
    width: auto;
    height: auto;
  }

  .ready-solution-copy {
    padding: 20px;
  }

  .ready-solution-actions .btn {
    width: 100%;
  }

  .solution-automation-modal,
  .simplify-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .solution-automation-dialog,
  .simplify-dialog {
    max-height: 88vh;
    border-radius: 24px;
  }

  .simplify-checks,
  .simplify-two-cols {
    grid-template-columns: 1fr;
  }

  .ready-solutions-cta {
    border-radius: 24px;
  }
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: #314866;
  font-size: 14px;
  font-weight: 750;
}

.hero-points span::before {
  content: "✓";
  color: var(--blue);
  margin-right: 8px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 460px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(53, 181, 242, 0.16), transparent 36%),
    linear-gradient(135deg, #ffffff, #f5faff);
}

.orbit-bg,
.orbit-bg::before,
.orbit-bg::after {
  position: absolute;
  border: 1px dashed rgba(15, 98, 254, 0.18);
  border-radius: 50%;
}

.orbit-bg {
  inset: 38px;
}

.orbit-bg::before {
  content: "";
  inset: 54px;
}

.orbit-bg::after {
  content: "";
  inset: 112px;
}

.hub-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.main-hub {
  top: 50%;
  left: 50%;
  width: 164px;
  height: 164px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  padding: 14px;
  background:
    radial-gradient(circle at 84% 18%, rgba(53, 181, 242, 0.12), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(255, 122, 47, 0.08), transparent 30%),
    #ffffff;
  color: var(--navy);
  border: 1px solid rgba(15, 98, 254, 0.16);
  border-radius: 28px;
  box-shadow:
    0 22px 54px rgba(7, 23, 47, 0.12),
    inset 0 0 0 7px rgba(244, 248, 255, 0.94);
}

.logo-upload-hub {
  padding: 18px;
  background:
    radial-gradient(circle at 74% 24%, rgba(53, 181, 242, 0.10), transparent 30%),
    #ffffff;
}

.logo-upload-hub img {
  width: 100%;
  max-width: 142px;
  max-height: 142px;
  object-fit: contain;
  display: block;
}

.linkup-hub-mark {
  position: relative;
  width: 136px;
  height: 126px;
  display: block;
}

.linkup-script {
  position: absolute;
  left: 13px;
  top: 27px;
  z-index: 2;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 600;
  line-height: .84;
  letter-spacing: -0.055em;
  transform: rotate(-8deg);
}

.linkup-name {
  position: absolute;
  left: 12px;
  top: 57px;
  z-index: 2;
  color: var(--navy);
  font-size: 30px;
  font-weight: 950;
  line-height: .86;
  letter-spacing: -0.085em;
  transform: rotate(-3deg);
}

.linkup-name span {
  color: var(--blue);
}

.linkup-orbit {
  position: absolute;
  left: 8px;
  right: 10px;
  bottom: 16px;
  height: 42px;
  border-bottom: 4px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(90deg, var(--blue), var(--sky), var(--orange)) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border: 4px solid transparent;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(8deg);
}

.linkup-arrow {
  position: absolute;
  right: 17px;
  bottom: 23px;
  width: 18px;
  height: 18px;
  border-right: 5px solid var(--orange);
  border-top: 5px solid var(--orange);
  transform: rotate(45deg);
}

.linkup-chain {
  position: absolute;
  right: 20px;
  top: 25px;
  width: 26px;
  height: 17px;
  transform: rotate(-42deg);
}

.linkup-chain::before,
.linkup-chain::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 9px;
  border: 3px solid var(--blue);
  border-radius: 999px;
  background: transparent;
}

.linkup-chain::before {
  left: 0;
  top: 3px;
}

.linkup-chain::after {
  right: 0;
  top: 3px;
  border-color: var(--orange);
}

.linkup-mini-person {
  position: absolute;
  z-index: 3;
  right: 46px;
  top: 42px;
  width: 27px;
  height: 34px;
  transform: rotate(-6deg);
}

.linkup-mini-person i {
  position: absolute;
  display: block;
}

.linkup-mini-person .head {
  left: 9px;
  top: 0;
  width: 8px;
  height: 8px;
  border: 1.7px solid var(--navy);
  border-radius: 50%;
  background: #ffffff;
}

.linkup-mini-person .body {
  left: 13px;
  top: 9px;
  width: 2px;
  height: 14px;
  border-radius: 999px;
  background: var(--navy);
}

.linkup-mini-person .arm,
.linkup-mini-person .leg {
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transform-origin: left center;
}

.linkup-mini-person .arm-a {
  left: 8px;
  top: 14px;
  width: 13px;
  transform: rotate(-28deg);
}

.linkup-mini-person .leg-a {
  left: 13px;
  top: 23px;
  width: 14px;
  transform: rotate(18deg);
}

.linkup-mini-person .leg-b {
  left: 12px;
  top: 24px;
  width: 13px;
  transform: rotate(-35deg);
}

.linkup-steps {
  position: absolute;
  right: 34px;
  top: 61px;
  width: 43px;
  height: 28px;
}

.linkup-steps i {
  position: absolute;
  display: block;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  border-top-right-radius: 5px;
}

.linkup-steps i:nth-child(1) {
  right: 0;
  bottom: 0;
  width: 15px;
  height: 10px;
}

.linkup-steps i:nth-child(2) {
  right: 12px;
  bottom: 9px;
  width: 18px;
  height: 11px;
}

.linkup-steps i:nth-child(3) {
  right: 26px;
  bottom: 19px;
  width: 16px;
  height: 9px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  min-width: 176px;
}

.mini-card strong {
  display: block;
  font-size: 14px;
}

.mini-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.mini-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 950;
}

.blue { background: rgba(15, 98, 254, 0.10); color: var(--blue); }
.green { background: rgba(15, 159, 110, 0.12); color: var(--green); }
.orange { background: rgba(255, 122, 47, 0.12); color: var(--orange); }
.violet { background: rgba(123, 97, 255, 0.12); color: var(--violet); }

.card-site { top: 58px; left: 88px; }
.card-crm { top: 190px; left: 30px; }
.card-auto { top: 80px; right: 28px; }
.card-meta { top: 220px; right: 20px; }
.card-results { bottom: 46px; left: 175px; }

/* Cards */
.cards-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.product-card,
.method-grid article,
.why-grid div,
.contact-form,
.connection-card,
.connection-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 26px;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 25px;
  font-weight: 950;
}

.service-card h3,
.product-card h3,
.method-grid h3 {
  margin: 18px 0 8px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.service-card p,
.product-card p,
.method-grid p,
.why-grid p,
.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

/* Flow */
.flow-section {
  padding-top: 40px;
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.flow-step {
  min-height: 160px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.flow-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.flow-step strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.flow-arrow {
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 181, 242, 0.12), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(255, 122, 47, 0.09), transparent 24%),
    #ffffff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  animation: productFloat 6s ease-in-out infinite;
}

.product-card:nth-child(2) {
  animation-delay: .9s;
}

.product-card:nth-child(3) {
  animation-delay: 1.6s;
}

.product-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--brand-gradient-soft);
  opacity: .9;
}

.product-card::after {
  content: none;
}

.product-card > div:first-child {
  position: relative;
  z-index: 2;
}

.product-card > div:first-child::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.product-card:hover {
  animation-play-state: paused;
  transform: translateY(-7px);
  border-color: rgba(255, 122, 47, 0.24);
  box-shadow: 0 24px 58px rgba(7, 23, 47, 0.12);
}

.product-preview {
  position: relative;
  height: 135px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4f8ff, #ffffff);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-content: start;
  overflow: hidden;
}

.product-preview img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.product-preview img.is-loaded {
  display: block;
}

.product-preview span {
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.product-preview div {
  grid-column: 1 / -1;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(15, 98, 254, 0.10), rgba(53, 181, 242, 0.08));
}

@keyframes productFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Connection */
.connection-section {
  padding-top: 40px;
}

.connection-card {
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff, #f4faff);
}

.connection-box {
  padding: 22px;
  background: #fff;
}

.connection-box strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

/* Method */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.method-grid article {
  padding: 24px;
}

.method-grid span {
  display: inline-flex;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 12px;
}

/* Why */
.why-section {
  padding-top: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-grid div {
  padding: 22px;
}

.why-grid strong {
  font-size: 19px;
}

/* Contact */
.contact-section {
  background:
    linear-gradient(180deg, rgba(238, 245, 255, 0.4), rgba(255, 255, 255, 0.8));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.contact-note {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.contact-note ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-form {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #203554;
  font-size: 13px;
  font-weight: 850;
}

.span-full,
.form-status,
.form-privacy {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-status.ok {
  color: var(--green);
}

.form-status.bad {
  color: #dc2626;
}

.form-privacy {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

/* CTA and footer */
.final-cta {
  padding: 34px 0;
}

.final-cta-inner {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255,122,47,.35), transparent 24%),
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, var(--blue) 0%, var(--sky) 68%, var(--orange) 100%);
  box-shadow: var(--shadow);
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta h2 {
  font-size: clamp(27px, 4vw, 42px);
}

.final-cta p {
  margin: 8px 0 0;
  opacity: 0.92;
}

.site-footer {
  margin-top: 18px;
  padding: 32px 0 16px;
  color: #dbeafe;
  background:
    radial-gradient(circle at 15% 0%, rgba(53, 181, 242, 0.18), transparent 26%),
    var(--navy);
  border-radius: 24px 24px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 21px;
  font-weight: 950;
}

.site-footer p {
  margin: 0;
  color: #a9bdd8;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}

.site-footer a {
  display: block;
  margin: 6px 0;
  color: #cbdaf0;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #92a9c8;
  font-size: 12px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-footer .footer-legal-links a {
  display: inline-flex;
  margin: 0;
  color: #dbeafe;
  font-size: 12px;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 14px;
  }

  .site-nav a:hover {
    background: var(--bg-soft);
  }

  .hero-grid,
  .connection-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .services-grid,
  .product-grid,
  .method-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .flow-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .section,
  .section-soft {
    padding: 52px 0;
  }

  .brand-text small {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-visual {
    min-height: 470px;
  }

  .main-hub {
    width: 138px;
    height: 138px;
    padding: 10px;
  }

  .logo-upload-hub img {
    max-width: 108px;
    max-height: 108px;
  }

  .linkup-hub-mark {
    width: 114px;
    height: 108px;
  }

  .linkup-script {
    left: 9px;
    top: 24px;
    font-size: 29px;
  }

  .linkup-name {
    left: 8px;
    top: 50px;
    font-size: 25px;
  }

  .linkup-chain {
    right: 12px;
    top: 21px;
    transform: rotate(-42deg) scale(.82);
  }

  .linkup-mini-person {
    right: 36px;
    top: 36px;
    transform: rotate(-6deg) scale(.84);
  }

  .linkup-steps {
    right: 24px;
    top: 55px;
    transform: scale(.86);
  }

  .linkup-arrow {
    right: 12px;
    bottom: 19px;
    transform: rotate(45deg) scale(.82);
  }

  .mini-card {
    min-width: 148px;
    padding: 10px;
  }

  .card-site { top: 28px; left: 18px; }
  .card-crm { top: 142px; left: 12px; }
  .card-auto { top: 58px; right: 8px; }
  .card-meta { top: 270px; right: 8px; }
  .card-results { bottom: 18px; left: 58px; }

  .services-grid,
  .product-grid,
  .method-grid,
  .why-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .final-cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Internal pages */
.page-hero {
  padding: 82px 0 54px;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 181, 242, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.74fr);
  gap: 38px;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.page-visual {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 60% 30%, rgba(15, 98, 254, 0.12), transparent 28%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.page-visual-card {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fbff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.page-visual-card strong {
  color: var(--navy);
}

.page-visual-card span {
  color: var(--blue);
  font-weight: 950;
}

.text-panel {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.text-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.list-check {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 30px;
  color: #30435d;
  line-height: 1.55;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 950;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.detail-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.6;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.work-thumb {
  min-height: 190px;
  padding: 18px;
  background: linear-gradient(135deg, #f4f8ff, #ffffff);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.work-mini-bar {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  width: 46%;
}

.work-mini-ui {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 10px;
}

.work-mini-ui span,
.work-mini-ui div {
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.work-card-content {
  padding: 22px;
}

.work-card-content h3 {
  margin: 0 0 8px;
}

.work-card-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  gap: 26px;
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 14px;
}

.contact-option {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-option strong {
  display: block;
  margin-bottom: 6px;
}

.contact-option p,
.contact-option a {
  color: var(--muted);
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.faq-card strong {
  display: block;
  margin-bottom: 8px;
}

.faq-card p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .page-hero-grid,
  .split-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .detail-grid,
  .work-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 58px 0 38px;
  }
}

/* =========================================================
   LINKUPSITE - SEZIONE HOME
   LA CONNESSIONE È COMUNICAZIONE
   ========================================================= */

.connection-showcase {
  padding: 54px 0;
}

.connection-showcase-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 32px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 98, 254, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 76% 34%, rgba(53,181,242,.16), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 24px 70px rgba(7, 23, 47, .11);
}

.connection-showcase-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(15, 98, 254, 0.14);
  border-radius: 22px;
  pointer-events: none;
}

.connection-showcase-copy {
  position: relative;
  z-index: 2;
}

.connection-showcase-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--brand-gradient-soft);
}

.connection-showcase-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: #08172f;
}

.connection-showcase-copy p {
  margin: 0 0 14px;
  max-width: 640px;
  color: #5f748f;
  font-size: 17px;
  line-height: 1.68;
}

.connection-showcase-highlight {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid #0f62fe;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  color: #08172f !important;
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(7, 23, 47, .08);
}

.connection-showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  background: var(--brand-gradient);
  box-shadow: 0 16px 32px rgba(15,98,254,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.connection-showcase-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15,98,254,.28);
}

.connection-showcase-visual {
  position: relative;
  min-height: 392px;
  z-index: 2;
}

/* Sfera network */
.connection-network-sphere {
  position: absolute;
  left: 2%;
  top: 8px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.76), transparent 15%),
    radial-gradient(circle at 68% 70%, rgba(53,181,242,.62), transparent 28%),
    radial-gradient(circle at 50% 50%, #2488ff 0%, #0f62fe 44%, #073d9a 100%);
  box-shadow:
    0 30px 70px rgba(15,98,254,.30),
    0 0 44px rgba(53,181,242,.34),
    inset 0 0 0 1px rgba(255,255,255,.38),
    inset 0 -24px 50px rgba(3,31,95,.24);
  overflow: visible;
}

.connection-network-sphere::before,
.connection-network-sphere::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.connection-network-sphere::before {
  inset: 23px;
  border: 1px solid rgba(255,255,255,.46);
  box-shadow:
    inset 0 0 0 28px rgba(255,255,255,.025),
    inset 34px 0 0 rgba(255,255,255,.025),
    inset -34px 0 0 rgba(255,255,255,.025);
}

.connection-network-sphere::after {
  inset: -30px -42px;
  border: 2px solid rgba(15,98,254,.18);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-18deg);
}

.sphere-ring {
  position: absolute;
  inset: 38px 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.42);
  border-left-color: transparent;
  border-right-color: transparent;
  transform: rotate(24deg);
}

.sphere-ring:nth-child(2) {
  inset: 14px 52px;
  transform: rotate(-10deg);
  border-left-color: rgba(255,255,255,.38);
  border-right-color: rgba(255,255,255,.38);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.sphere-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.72), rgba(255,255,255,.12));
  transform-origin: left center;
  border-radius: 99px;
  opacity: .92;
}

.sphere-line.line-1 { width: 122px; left: 48px; top: 70px; transform: rotate(18deg); }
.sphere-line.line-2 { width: 116px; left: 68px; top: 132px; transform: rotate(-22deg); }
.sphere-line.line-3 { width: 96px; left: 54px; top: 160px; transform: rotate(28deg); }
.sphere-line.line-4 { width: 88px; left: 112px; top: 58px; transform: rotate(72deg); }
.sphere-line.line-5 { width: 108px; left: 82px; top: 104px; transform: rotate(5deg); }

.sphere-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(255,255,255,.15),
    0 0 18px rgba(255,255,255,.96);
  z-index: 2;
}

.sphere-node.node-1 { left: 48px; top: 64px; }
.sphere-node.node-2 { left: 132px; top: 92px; }
.sphere-node.node-3 { right: 42px; top: 72px; }
.sphere-node.node-4 { left: 76px; bottom: 54px; }
.sphere-node.node-5 { right: 58px; bottom: 68px; }
.sphere-node.node-6 { left: 108px; top: 150px; }

/* Browser card */
.connection-browser-card {
  position: absolute;
  right: 0;
  top: 42px;
  width: min(368px, 69%);
  min-height: 220px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(207,220,239,.95);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 48px rgba(7,23,47,.11);
  backdrop-filter: blur(8px);
}

.browser-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 11px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8d8ee;
}

.browser-address {
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242,247,255,.92);
  color: #6e83a1;
  font-size: 12px;
  font-weight: 800;
}

.browser-content {
  min-height: 145px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.35) 0%, rgba(238,247,255,.72) 100%);
  border: 1px solid #e3eefb;
  overflow: hidden;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 6px;
  align-items: center;
}

.browser-brand {
  position: relative;
  min-height: 112px;
  padding: 10px 8px 10px 4px;
  background: transparent;
}

.brand-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  opacity: .14;
  user-select: none;
  pointer-events: none;
  transform: rotate(-8deg);
}

.brand-watermark .wm-link {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.05em;
  color: #0a4fd0;
  line-height: .95;
}

.brand-watermark .wm-upsite {
  margin-left: 20px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.06em;
  color: #35b5f2;
  line-height: .9;
}

.brand-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 112px;
}

.brand-copy .mini-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #0f62fe;
  text-transform: uppercase;
}

.brand-copy .brand-title {
  font-size: 25px;
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 900;
  color: #08172f;
}

.brand-copy .brand-title span {
  color: #0f62fe;
}

.brand-copy .brand-sub {
  font-size: 12px;
  line-height: 1.35;
  color: #5f748f;
  font-weight: 700;
}

/* omino e scale */
.stairs-logo {
  position: relative;
  height: 118px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.55), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.35) 0%, rgba(221,240,255,.35) 100%);
  overflow: hidden;
}

.stairs-logo::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2px solid rgba(15,98,254,.10);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(20deg);
}

.stairs-steps {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 86px;
  height: 54px;
}

.stairs-steps span {
  position: absolute;
  display: block;
  border-right: 4px solid #0f62fe;
  border-top: 4px solid #0f62fe;
  border-top-right-radius: 6px;
}

.stairs-steps span:nth-child(1) { right: 0; bottom: 0; width: 28px; height: 18px; }
.stairs-steps span:nth-child(2) { right: 22px; bottom: 16px; width: 34px; height: 22px; }
.stairs-steps span:nth-child(3) { right: 48px; bottom: 34px; width: 32px; height: 16px; }

.mini-man {
  position: absolute;
  left: 28px;
  bottom: 26px;
  width: 54px;
  height: 74px;
}

.mini-man .head {
  position: absolute;
  top: 0;
  left: 11px;
  width: 18px;
  height: 18px;
  border: 2px solid #08172f;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
}

.mini-man .torso {
  position: absolute;
  top: 16px;
  left: 20px;
  width: 3px;
  height: 26px;
  background: #08172f;
  transform: rotate(8deg);
  border-radius: 999px;
}

.mini-man .arm-a,
.mini-man .arm-b,
.mini-man .leg-a,
.mini-man .leg-b {
  position: absolute;
  height: 3px;
  background: #08172f;
  border-radius: 999px;
  transform-origin: left center;
}

.mini-man .arm-a { top: 24px; left: 7px; width: 20px; transform: rotate(-26deg); }
.mini-man .arm-b { top: 26px; left: 20px; width: 18px; transform: rotate(34deg); }
.mini-man .leg-a { top: 41px; left: 19px; width: 24px; transform: rotate(18deg); }
.mini-man .leg-b { top: 46px; left: 14px; width: 24px; transform: rotate(-34deg); }

/* cards sotto */
.connection-benefits-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.connection-benefit {
  padding: 14px;
  border: 1px solid #dce8f7;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 36px rgba(7, 23, 47, .08);
}

.connection-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(15,98,254,.10);
  color: #0f62fe;
}

.connection-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connection-icon.monitor {
  color: #16a56d;
  background: rgba(21,165,107,.12);
}

.connection-icon.person {
  color: #ff7a2f;
  background: rgba(255,122,47,.12);
}

.connection-benefit strong {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #08172f;
}

.connection-benefit small {
  display: block;
  margin-top: 5px;
  color: #5f748f;
  font-size: 12px;
  line-height: 1.35;
}

/* responsive */
@media (max-width: 980px) {
  .connection-showcase-panel {
    grid-template-columns: 1fr;
  }

  .connection-showcase-visual {
    min-height: 445px;
  }
}

@media (max-width: 680px) {
  .connection-showcase {
    padding: 42px 0;
  }

  .connection-showcase-panel {
    padding: 22px;
  }

  .connection-showcase-visual {
    min-height: 642px;
  }

  .connection-network-sphere {
    left: 50%;
    top: 18px;
    width: 186px;
    height: 186px;
    transform: translateX(-50%);
  }

  .connection-browser-card {
    top: 210px;
    right: 50%;
    width: min(100%, 340px);
    transform: translateX(50%);
  }

  .browser-content {
    grid-template-columns: 1fr;
    min-height: 190px;
  }

  .connection-benefits-row {
    grid-template-columns: 1fr;
    bottom: 0;
  }
}

/* =========================================================
   LINKUPSITE - SEZIONE EOLO OFFERTE CON TAB
   ========================================================= */

.eolo-tabs-section {
  padding: 62px 0;
}

.eolo-page-hero {
  padding: 78px 0 54px;
  background:
    radial-gradient(circle at 14% 0%, rgba(53, 181, 242, 0.16), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(255, 122, 47, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.eolo-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
  gap: 34px;
  align-items: center;
}

.eolo-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.eolo-page-hero h1::after {
  content: "";
  display: block;
  width: 138px;
  height: 5px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.eolo-page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.eolo-page-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 181, 242, .16), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.eolo-page-card strong,
.eolo-page-card span {
  display: block;
}

.eolo-page-card strong {
  color: var(--text);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.eolo-page-card span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.eolo-home-teaser .connection-showcase-panel {
  grid-template-columns: 1fr;
}

.eolo-connection-note .connection-showcase-panel {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
}

.eolo-tech-section {
  padding: 64px 0 34px;
  background:
    radial-gradient(circle at 12% 12%, rgba(53, 181, 242, 0.14), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(255, 122, 47, 0.10), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.eolo-tech-head,
.eolo-faq-head {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.eolo-tech-head h2,
.eolo-faq-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.eolo-tech-head h2::after,
.eolo-faq-head h2::after {
  content: "";
  display: block;
  width: 138px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.eolo-tech-head p,
.eolo-faq-head p {
  margin: 18px auto 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.eolo-tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.eolo-tech-card,
.eolo-tech-family,
.eolo-tech-mini {
  border: 1px solid rgba(197, 220, 247, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.eolo-tech-card-large {
  grid-row: span 2;
  overflow: hidden;
}

.eolo-tech-copy {
  padding: clamp(24px, 4vw, 38px);
}

.eolo-tech-copy span,
.eolo-tech-family span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.08), rgba(255, 122, 47, 0.10));
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eolo-tech-copy h3,
.eolo-tech-family h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.eolo-tech-copy p,
.eolo-tech-family p,
.eolo-tech-mini p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 700;
}

.eolo-tech-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.eolo-tech-copy li {
  position: relative;
  padding-left: 26px;
  color: #304b68;
  font-weight: 850;
  line-height: 1.45;
}

.eolo-tech-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
}

.eolo-tech-image {
  margin: 0 clamp(18px, 3vw, 30px) clamp(18px, 3vw, 30px);
  border: 1px solid rgba(197, 220, 247, 0.85);
  border-radius: 24px;
  background: #f7fbff;
  overflow: hidden;
}

.eolo-tech-image img,
.eolo-tech-family img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eolo-tech-image img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.eolo-tech-family {
  overflow: hidden;
}

.eolo-tech-family img {
  aspect-ratio: 16 / 11;
}

.eolo-tech-family div {
  padding: 22px;
}

.eolo-tech-mini {
  padding: 24px;
}

.eolo-tech-mini strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.eolo-tech-mini.accent {
  border-left: 4px solid var(--orange);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 122, 47, 0.12), transparent 34%),
    #ffffff;
}

.eolo-faq-section {
  padding: 56px 0 36px;
  background: #f7fbff;
}

.eolo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.eolo-faq-item {
  border: 1px solid rgba(197, 220, 247, 0.95);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 23, 47, 0.06);
  overflow: hidden;
}

.eolo-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 18px 54px 18px 18px;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.eolo-faq-item summary::-webkit-details-marker {
  display: none;
}

.eolo-faq-item summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.eolo-faq-item[open] summary::after {
  transform: translateY(-35%) rotate(-135deg);
}

.eolo-faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.eolo-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.eolo-tabs-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(15, 98, 254, .16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 16%, rgba(53,181,242,.16), transparent 34%),
    radial-gradient(circle at 6% 0%, rgba(255,122,47,.07), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 24px 70px rgba(7, 23, 47, .11);
}

.eolo-tabs-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(15, 98, 254, .14);
  border-radius: 26px;
  pointer-events: none;
}

.eolo-tabs-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 26px;
}

.eolo-title-block {
  max-width: 760px;
}

.eolo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--brand-gradient-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.eolo-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--orange));
  box-shadow: 0 0 0 5px rgba(255,122,47,.12);
}

.eolo-tabs-head h2 {
  margin: 0;
  color: #07172f;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.eolo-tabs-head p {
  margin: 16px 0 0;
  max-width: 720px;
  color: #5f748f;
  font-size: 17px;
  line-height: 1.68;
}

.eolo-logo-slot {
  width: 140px;
  min-height: 68px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(15,98,254,.26);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  color: #5f748f;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.eolo-logo-slot img {
  max-width: 116px;
  max-height: 48px;
  object-fit: contain;
  display: block;
}

.eolo-logo-slot img + span {
  display: none;
}

.eolo-paths {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.eolo-path-card {
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(15,98,254,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  padding: 18px;
  box-shadow: 0 14px 36px rgba(7, 23, 47, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.eolo-path-card:hover,
.eolo-path-card.active {
  transform: translateY(-3px);
  border-color: rgba(255,122,47,.45);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 23, 47, .11);
}

.eolo-path-card.active {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,122,47,.12), transparent 34%),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(15,98,254,.18),
    0 24px 70px rgba(7, 23, 47, .11);
}

.eolo-path-card.active::before {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.path-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #0f62fe;
  background: rgba(15,98,254,.10);
  margin: 0 auto 14px;
}

.eolo-path-card[data-target="professionisti"] .path-icon {
  color: #16a56d;
  background: rgba(22,165,109,.12);
}

.eolo-path-card[data-target="aziende"] .path-icon {
  color: #ff7a2f;
  background: rgba(255,122,47,.12);
}

.path-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eolo-path-card strong {
  display: block;
  color: #07172f;
  font-size: 18px;
  letter-spacing: -.025em;
  margin-bottom: 6px;
}

.eolo-path-card span {
  display: block;
  color: #5f748f;
  font-size: 13px;
  line-height: 1.45;
}

.eolo-tabs {
  position: relative;
  z-index: 2;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(219,232,247,.72);
}

.eolo-offer-panel {
  display: none;
}

.eolo-offer-panel.active {
  display: block;
}

.offer-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 12px 18px;
}

.offer-panel-head h3 {
  margin: 0;
  color: #07172f;
  font-size: clamp(25px, 3.3vw, 38px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.offer-panel-head p {
  margin: 8px 0 0;
  color: #5f748f;
  line-height: 1.55;
}

.quick-coverage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
  background: var(--brand-gradient);
  box-shadow: 0 14px 28px rgba(15,98,254,.18);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offers-grid.pro {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 345px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(15,98,254,.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,122,47,.12), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(53,181,242,.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 14px 36px rgba(7, 23, 47, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-card.featured {
  border-color: rgba(15,98,254,.30);
  box-shadow: 0 24px 70px rgba(7, 23, 47, .11);
}

.promo-ribbon {
  position: absolute;
  top: 0;
  left: 22px;
  padding: 7px 15px;
  border-radius: 0 0 13px 13px;
  background: linear-gradient(135deg, #ffb18e, #ff7a2f);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.offer-top {
  padding-top: 26px;
}

.offer-type {
  margin: 0 0 8px;
  color: #0f62fe;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.offer-title {
  margin: 0;
  color: #07172f;
  font-size: clamp(21px, 2.1vw, 27px);
  line-height: 1.16;
  letter-spacing: -.04em;
  font-weight: 950;
}

.offer-promo {
  width: fit-content;
  margin-top: 18px;
  padding: 9px 12px;
  border-radius: 13px;
  color: #0f62fe;
  background: #ffffff;
  border: 1px solid rgba(15,98,254,.16);
  font-size: 19px;
  line-height: 1.1;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(7,23,47,.06);
}

.offer-price {
  margin: 10px 0 0;
  color: #5f748f;
  font-size: 14px;
  line-height: 1.45;
}

.offer-speed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.speed-box {
  padding: 12px;
  border: 1px solid rgba(15,98,254,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
}

.speed-box strong {
  display: block;
  color: #0f62fe;
  font-size: 24px;
  letter-spacing: -.06em;
  line-height: 1;
}

.speed-box small {
  display: block;
  margin-top: 4px;
  color: #5f748f;
  font-size: 11px;
  font-weight: 750;
}

.offer-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.offer-list li {
  position: relative;
  padding-left: 18px;
  color: #344b69;
  font-size: 13px;
  line-height: 1.35;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f62fe;
  font-weight: 950;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 136px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(15,98,254,.22);
  color: var(--blue-dark);
  background: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease;
}

.offer-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,122,47,.42);
  box-shadow: 0 14px 28px rgba(255,122,47,.10);
}

.offer-btn.primary {
  color: #fff;
  border-color: transparent;
  background: var(--brand-gradient);
  box-shadow: 0 14px 28px rgba(15,98,254,.18);
}

.eolo-support-panel {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(15,98,254,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 36px rgba(7, 23, 47, .08);
}

.support-copy strong {
  display: block;
  color: #07172f;
  font-size: 20px;
  letter-spacing: -.025em;
  margin-bottom: 6px;
}

.support-copy span {
  display: block;
  color: #5f748f;
  line-height: 1.55;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  color: #fff;
  background: var(--brand-gradient);
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 16px 30px rgba(15,98,254,.22);
  white-space: nowrap;
}

.eolo-disclaimer {
  position: relative;
  z-index: 2;
  margin: 16px auto 0;
  max-width: 920px;
  color: #7486a0;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .offers-grid,
  .offers-grid.pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eolo-tabs-head {
    grid-template-columns: 1fr;
  }

  .eolo-logo-slot {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .eolo-tabs-section {
    padding: 42px 0;
  }

  .eolo-tabs-panel {
    padding: 22px;
  }

  .eolo-paths {
    grid-template-columns: 1fr;
  }

  .offer-panel-head {
    display: block;
  }

  .quick-coverage {
    margin-top: 14px;
    width: 100%;
  }

  .offers-grid,
  .offers-grid.pro {
    grid-template-columns: 1fr;
  }

  .eolo-support-panel {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   LINKUPSITE - MODULO CONTATTO CRM
   ========================================================= */

.linkupsite-form-wrapper {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.linkupsite-form-head {
  margin-bottom: 20px;
}

.linkupsite-form-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--brand-gradient-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.linkupsite-form-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.linkupsite-form-head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.landing-contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: #203554;
  font-size: 13px;
  font-weight: 850;
}

.landing-contact-submit {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 16px 32px rgba(15, 98, 254, 0.22);
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.landing-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 98, 254, 0.26);
}

.landing-contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.landing-contact-msg {
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.landing-contact-msg.ok {
  color: var(--green);
}

.landing-contact-msg.bad {
  color: #dc2626;
}

.linkupsite-form-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* =========================================================
   LINKUPSITE - PAGINA CHI SONO
   ========================================================= */

.about-hero {
  padding: 82px 0 58px;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 181, 242, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 38px;
  align-items: center;
}

.about-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.about-photo-card {
  min-height: 360px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 18%, rgba(53, 181, 242, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, #f4f9ff);
  box-shadow: var(--shadow-soft);
}

.about-profile-photo {
  width: 100%;
  height: 100%;
  min-height: 324px;
  display: block;
  border-radius: 26px;
  object-fit: cover;
  object-position: center top;
}

.about-photo-placeholder {
  min-height: 324px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 26px;
  border: 1px dashed rgba(15, 98, 254, 0.24);
  border-radius: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.about-photo-placeholder span {
  color: var(--blue);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.about-photo-placeholder p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-section {
  padding: 64px 0;
}

.about-section.compact {
  padding: 46px 0;
}

.method-section {
  padding-top: 28px;
}

.about-story-grid,
.about-ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: center;
}

.about-story-copy,
.about-ai-copy,
.about-highlight-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-story-copy h2,
.about-ai-copy h2,
.about-method-head h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.about-story-copy p,
.about-ai-copy p,
.about-method-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-highlight-card {
  color: #08172f;
  border-left: 4px solid var(--blue);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 122, 47, 0.08), transparent 28%),
    #ffffff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-timeline article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-timeline span,
.about-method-grid span {
  display: inline-flex;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.about-timeline h3 {
  min-height: 52px;
  margin: 12px 0 8px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.about-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-method-head {
  max-width: 840px;
  margin-bottom: 22px;
}

.about-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-method-grid article {
  min-height: 132px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-method-grid h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.about-method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.about-ai-visual {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 46%, rgba(53, 181, 242, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff, #f4f9ff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ai-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 24px 54px rgba(15, 98, 254, 0.24);
  font-size: 28px;
  font-weight: 950;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ai-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--blue);
  box-shadow: 0 0 0 8px rgba(15, 98, 254, 0.09);
  z-index: 3;
}

.ai-node.node-a { left: 18%; top: 26%; }
.ai-node.node-b { right: 17%; top: 24%; border-color: var(--green); }
.ai-node.node-c { left: 24%; bottom: 22%; border-color: var(--orange); }
.ai-node.node-d { right: 24%; bottom: 20%; border-color: var(--violet); }

.ai-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 98, 254, 0.32), transparent);
  transform-origin: left center;
}

.ai-line.line-a { transform: rotate(24deg); }
.ai-line.line-b { transform: rotate(145deg); }
.ai-line.line-c { transform: rotate(-34deg); }

.about-final-cta {
  padding-top: 52px;
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-story-grid,
  .about-ai-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .about-hero {
    padding: 58px 0 42px;
  }

  .about-section,
  .about-section.compact {
    padding: 38px 0;
  }

  .about-timeline {
    grid-template-columns: 1fr;
  }

  .about-photo-card,
  .about-ai-visual {
    min-height: 280px;
  }

  .about-profile-photo {
    height: 280px;
    min-height: 280px;
    object-position: center top;
  }

  .about-photo-placeholder {
    min-height: 244px;
  }
}

/* =========================================================
   LINKUPSITE - PAGINA SERVIZI / SOLUZIONI
   ========================================================= */

.services-page-hero {
  padding: 78px 0 56px;
  background:
    radial-gradient(circle at 14% 0%, rgba(53, 181, 242, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: 38px;
  align-items: center;
}

.services-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.services-hero-copy p {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.services-hero-cards {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 18%, rgba(53, 181, 242, 0.14), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.services-hero-cards article,
.solution-card,
.start-grid article,
.pricing-grid article,
.scope-grid article {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.services-hero-cards article {
  padding: 18px;
  border-radius: 20px;
}

.services-hero-cards span,
.start-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.services-hero-cards strong {
  display: block;
  color: var(--text);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.services-hero-cards p,
.start-grid p,
.pricing-grid p,
.scope-grid li {
  color: var(--muted);
  line-height: 1.55;
}

.services-section {
  padding: 56px 0;
}

.services-section.compact {
  padding: 42px 0;
}

.services-page-head {
  max-width: 790px;
  margin-bottom: 28px;
}

.services-page-head.center {
  margin-inline: auto;
  text-align: center;
}

.services-page-head h2,
.preventivo-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.services-page-head p,
.preventivo-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 24px;
  height: 100%;
}

.solution-card.featured {
  border-color: rgba(15, 98, 254, 0.3);
  box-shadow: var(--shadow);
}

.solution-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 950;
}

.solution-card h3 {
  margin: 16px 0 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.solution-card ul,
.scope-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.solution-card li,
.scope-grid li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.solution-card li::before,
.scope-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 950;
}

.solution-price {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 950;
}

.solution-price small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.price-value {
  color: var(--blue);
}

.price-accent {
  color: var(--orange);
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.solution-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 14px;
  color: #ffffff;
  background: var(--brand-gradient);
  box-shadow: 0 14px 28px rgba(15, 98, 254, 0.18);
  font-size: 14px;
  font-weight: 900;
}

.start-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.start-grid article,
.pricing-grid article,
.scope-grid article {
  padding: 22px;
  border-radius: 22px;
}

.start-grid h3,
.pricing-grid h3,
.scope-grid h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 21px;
  letter-spacing: -0.03em;
}

.pricing-value {
  margin: 14px 0 8px;
  color: var(--blue);
  font-size: 19px;
  font-weight: 950;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.scope-note {
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 4px solid var(--blue);
  border-radius: 20px;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 122, 47, 0.08), transparent 28%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  line-height: 1.55;
}

.preventivo-section {
  background:
    linear-gradient(180deg, rgba(238, 245, 255, 0.35), rgba(255, 255, 255, 0.85));
}

.services-moment-cta {
  padding: 50px 0 42px;
}

.moment-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(15, 98, 254, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 122, 47, 0.14), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(53, 181, 242, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.moment-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.08), rgba(255, 122, 47, 0.10));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moment-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  opacity: 0;
  transform: translateY(-22px);
  animation: momentFloatIn 0.9s ease forwards;
}

.moment-title span {
  display: block;
  color: var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--sky), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.moment-card p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}

.moment-card .btn {
  margin-top: 24px;
}

.moment-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.32;
  filter: blur(18px);
  animation: momentGlow 3.2s ease-in-out infinite;
}

.glow-one {
  left: -60px;
  top: -60px;
  background: rgba(255, 122, 47, 0.34);
}

.glow-two {
  right: -70px;
  bottom: -70px;
  background: rgba(53, 181, 242, 0.34);
  animation-delay: 0.7s;
}

@keyframes momentFloatIn {
  0% {
    opacity: 0;
    transform: translateY(-26px);
  }

  70% {
    opacity: 1;
    transform: translateY(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes momentGlow {
  0%, 100% {
    transform: scale(0.94);
    opacity: 0.24;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.38;
  }
}

.preventivo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1.18fr);
  gap: 28px;
  align-items: start;
}

.preventivo-copy {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1080px) {
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .services-hero-grid,
  .preventivo-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .services-page-hero {
    padding: 58px 0 42px;
  }

  .services-section,
  .services-section.compact {
    padding: 38px 0;
  }

  .services-moment-cta {
    padding: 38px 0;
  }

  .moment-card {
    text-align: left;
    padding: 28px 22px;
  }

  .moment-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .moment-glow {
    opacity: 0.22;
  }

  .solutions-grid,
  .start-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-accent {
    font-size: 28px;
  }
}

/* =========================================================
   LINKUPSITE - PAGINA LAVORI / STRUMENTI
   ========================================================= */

.works-hero {
  padding: 78px 0 56px;
  background:
    radial-gradient(circle at 14% 0%, rgba(53, 181, 242, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.works-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 38px;
  align-items: center;
}

.works-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.works-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.works-product-stack {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 122, 47, 0.14), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(53, 181, 242, 0.18), transparent 32%),
    radial-gradient(circle at 54% 88%, rgba(15, 98, 254, 0.08), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.works-product-stack::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(15, 98, 254, 0.14);
  border-radius: 26px;
}

.stack-card {
  position: absolute;
  width: min(310px, 74%);
  padding: 18px;
  border: 1px solid rgba(219, 232, 247, 0.95);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.94));
  box-shadow: 0 18px 46px rgba(7, 23, 47, 0.10);
}

.stack-crm {
  left: 30px;
  top: 36px;
}

.stack-marketing {
  right: 28px;
  top: 150px;
}

.stack-meta {
  left: 74px;
  bottom: 34px;
}

.stack-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.stack-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 47, 0.12);
}

.stack-marketing .stack-dot {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(15, 159, 110, 0.12);
}

.stack-meta .stack-dot {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(15, 98, 254, 0.12);
}

.stack-card-top strong {
  color: var(--text);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.stack-lines {
  display: grid;
  gap: 8px;
}

.stack-lines span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 98, 254, 0.10), rgba(53, 181, 242, 0.08), rgba(255, 122, 47, 0.08));
}

.stack-lines span:nth-child(2) {
  width: 72%;
}

.stack-lines span:nth-child(3) {
  width: 54%;
}

.stack-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.stack-mini-grid span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(219, 232, 247, 0.95);
  border-radius: 12px;
  color: #203554;
  background: #ffffff;
  font-size: 11px;
  font-weight: 850;
}

.stack-mini-grid span:first-child {
  color: var(--orange);
  border-color: rgba(255, 122, 47, 0.24);
  background: rgba(255, 122, 47, 0.08);
}

.works-section {
  padding: 56px 0;
}

.works-section.compact {
  padding: 42px 0;
}

.works-section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.works-section-head.center {
  margin-inline: auto;
  text-align: center;
}

.works-section-head h2,
.demo-panel h2,
.cta-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.works-section-head p,
.demo-panel p,
.cta-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

/* Vetrina strumenti LinkUpSite 3D */
.lus3d-section {
  padding-top: 34px;
}

.lus3d-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 122, 47, 0.14), transparent 26%),
    radial-gradient(circle at 12% 12%, rgba(53, 181, 242, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 24px 70px rgba(7, 23, 47, 0.10);
}

.lus3d-panel::before {
  content: none;
}

.lus3d-panel .works-section-head h2::after {
  content: "";
  display: block;
  width: min(180px, 42vw);
  height: 5px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--brand-gradient);
}

.lus3d-carousel {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  margin-top: 30px;
  perspective: 1200px;
}

.lus3d-stage {
  position: relative;
  height: 660px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.lus3d-card {
  position: absolute;
  width: min(760px, 84vw);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(219, 232, 247, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(7, 23, 47, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) translateZ(-140px) rotateY(0deg) scale(0.82);
  transition: transform .45s ease, opacity .45s ease, filter .45s ease, box-shadow .45s ease;
}

.lus3d-card.is-active {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) translateZ(120px) rotateY(0deg) scale(1);
  box-shadow: 0 30px 78px rgba(7, 23, 47, 0.16);
}

.lus3d-card.is-prev {
  z-index: 3;
  opacity: .58;
  transform: translateX(-54%) translateZ(-80px) rotateY(16deg) scale(.78);
  filter: saturate(.9);
}

.lus3d-card.is-next {
  z-index: 3;
  opacity: .58;
  transform: translateX(54%) translateZ(-80px) rotateY(-16deg) scale(.78);
  filter: saturate(.9);
}

.lus3d-card.is-far {
  z-index: 1;
  opacity: .22;
  transform: translateX(0) translateZ(-220px) scale(.74);
  filter: blur(.5px) saturate(.82);
}

.lus3d-media {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 122, 47, 0.16), transparent 24%),
    radial-gradient(circle at 20% 18%, rgba(53, 181, 242, 0.20), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
}

.lus3d-media::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(90deg, var(--blue), var(--sky), var(--orange)) 28px 34px / 178px 12px no-repeat,
    linear-gradient(90deg, rgba(15, 98, 254, 0.72), rgba(53, 181, 242, 0.72)) 28px 62px / 138px 10px no-repeat,
    linear-gradient(90deg, rgba(255, 122, 47, 0.42), rgba(15, 98, 254, 0.34)) 28px 90px / 220px 74px no-repeat,
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.lus3d-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: #ffffff;
  opacity: 0;
  transition: opacity .2s ease;
}

.lus3d-media:has(img:not(.is-loaded))::after {
  opacity: 1;
}

.lus3d-media img {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top center;
  padding: 0;
  background: #ffffff;
  display: none;
  font-size: 0;
}

.lus3d-media img.is-loaded {
  display: block;
}

.lus3d-card-copy {
  position: relative;
  z-index: 2;
  padding: 18px 22px 22px;
}

.lus3d-card-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 122, 47, 0.10);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.lus3d-card-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.lus3d-card-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.lus3d-control {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand-gradient);
  box-shadow: var(--brand-shadow);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .18s ease, box-shadow .18s ease;
}

.lus3d-control:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 20px 42px rgba(15, 98, 254, 0.28);
}

.lus3d-control span {
  font-size: 34px;
  line-height: 1;
  transform: translateY(-1px);
}

.lus3d-prev {
  left: 8px;
}

.lus3d-next {
  right: 8px;
}

.lus3d-dots {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 6px;
}

.lus3d-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.22);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.lus3d-dots button.is-active {
  width: 34px;
  background: var(--brand-gradient);
}

@media (max-width: 680px) {
  .lus3d-carousel {
    min-height: 560px;
  }

  .lus3d-stage {
    height: 530px;
  }

  .lus3d-card {
    width: min(420px, 90vw);
    min-height: 500px;
  }

  .lus3d-card.is-prev {
    transform: translateX(-34%) translateZ(-70px) rotateY(14deg) scale(.82);
  }

  .lus3d-card.is-next {
    transform: translateX(34%) translateZ(-70px) rotateY(-14deg) scale(.82);
  }

  .lus3d-media {
    min-height: 310px;
  }

  .lus3d-media img {
    height: 310px;
  }
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(219, 232, 247, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 122, 47, 0.055), transparent 26%),
    #ffffff;
  box-shadow: 0 14px 36px rgba(7, 23, 47, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 47, 0.22);
  box-shadow: 0 20px 48px rgba(7, 23, 47, 0.10);
}

.tool-media {
  min-height: 150px;
  padding: 14px;
  border: 1px solid rgba(219, 232, 247, 0.95);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 181, 242, 0.13), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(255, 122, 47, 0.08), transparent 28%),
    linear-gradient(135deg, #f8fbff, #ffffff);
}

.tool-media-image {
  display: grid;
  align-items: stretch;
}

.tool-media-mock {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 10px;
}

.tool-media-mock span,
.tool-media-mock i {
  display: block;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.tool-media-mock span:first-child {
  grid-column: 1 / -1;
  height: 20px;
  background: linear-gradient(90deg, var(--orange), var(--sky), rgba(15, 98, 254, 0.72));
  border: 0;
}

.tool-media-mock span:nth-child(2),
.tool-media-mock span:nth-child(3),
.tool-media-mock i {
  min-height: 86px;
}

.tool-media-mock i {
  background:
    linear-gradient(180deg, rgba(15, 98, 254, 0.12), rgba(53, 181, 242, 0.08)),
    #ffffff;
}

.tool-card h3 {
  margin: 16px 0 8px;
  color: var(--text);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.tool-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tool-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(219, 232, 247, 0.95);
  color: #203554;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
}

.tool-tags span:first-child {
  color: var(--orange);
  background: rgba(255, 122, 47, 0.10);
  border-color: rgba(255, 122, 47, 0.22);
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.tool-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(15, 98, 254, 0.22);
  color: var(--blue);
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tool-actions a:first-child {
  color: #ffffff;
  border-color: transparent;
  background: var(--brand-gradient);
  box-shadow: 0 12px 24px rgba(15, 98, 254, 0.15);
}

.tool-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 98, 254, 0.12);
}

.video-section-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: center;
}

.demo-panel,
.video-placeholder,
.adapt-panel,
.adapt-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.demo-panel {
  padding: 28px;
  border-radius: var(--radius);
}

.video-placeholder {
  min-height: 300px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 48% 38%, rgba(53, 181, 242, 0.16), transparent 34%),
    radial-gradient(circle at 72% 26%, rgba(255, 122, 47, 0.10), transparent 24%),
    radial-gradient(circle at 24% 80%, rgba(15, 98, 254, 0.08), transparent 26%),
    linear-gradient(135deg, #ffffff, #f4f9ff);
}

.play-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 18px 42px rgba(15, 98, 254, 0.24);
  position: relative;
}

.play-button::before {
  content: "";
  position: absolute;
  right: -4px;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 47, 0.12);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 23px;
  border-left: 20px solid #ffffff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.video-placeholder strong {
  color: var(--text);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.video-placeholder span {
  color: var(--muted);
  font-weight: 750;
}

.demo-video-link {
  margin-top: 12px;
}

.adapt-panel {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 181, 242, 0.12), transparent 28%),
    radial-gradient(circle at 0% 0%, rgba(255, 122, 47, 0.08), transparent 24%),
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.adapt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.adapt-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.adapt-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.adapt-card h3 {
  margin: 12px 0 8px;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.adapt-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.notice-box {
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 4px solid var(--blue);
  border-radius: 20px;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 122, 47, 0.08), transparent 28%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  line-height: 1.55;
  position: relative;
}

.notice-box::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -5px;
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  color: #ffffff;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.24), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(255, 122, 47, 0.38), transparent 22%),
    linear-gradient(135deg, var(--blue) 0%, var(--sky) 66%, var(--orange) 100%);
  box-shadow: var(--shadow);
}

.cta-panel .btn-light,
.final-cta-inner .btn-light {
  color: var(--blue-dark);
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.72);
  box-shadow: 0 14px 30px rgba(7, 23, 47, 0.12);
}

.cta-panel h2,
.cta-panel p {
  color: #ffffff;
}

.cta-panel p {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .works-hero-grid,
  .video-section-panel {
    grid-template-columns: 1fr;
  }

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

  .works-product-stack {
    min-height: 560px;
  }

  .stack-card {
    position: relative;
    width: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 18px;
  }
}

@media (max-width: 720px) {
  .works-hero {
    padding: 58px 0 42px;
  }

  .works-section,
  .works-section.compact {
    padding: 38px 0;
  }

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

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   LINKUPSITE - LAVORI / ECOSISTEMA STRUMENTI
   ========================================================= */

.works-ecosystem-section {
  position: relative;
  padding: 58px 0;
  overflow: hidden;
}

.works-ecosystem-head {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.works-ecosystem-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.works-ecosystem-head h2::after {
  content: "";
  display: block;
  width: 132px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.works-ecosystem-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.lus-ecosystem-stage {
  position: relative;
  min-height: 830px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(15, 98, 254, 0.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 181, 242, 0.20), transparent 30%),
    radial-gradient(circle at 4% 14%, rgba(255, 122, 47, 0.13), transparent 25%),
    radial-gradient(circle at 50% 86%, rgba(15, 98, 254, 0.09), transparent 33%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 26px 80px rgba(7, 23, 47, 0.10);
  overflow: hidden;
}

.lus-orbit {
  position: absolute;
  left: 50%;
  border: 1px dashed rgba(15, 98, 254, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 118px;
  width: min(980px, 90%);
  height: 360px;
  transform: translateX(-50%) rotate(-6deg);
}

.orbit-two {
  top: 330px;
  width: min(1120px, 106%);
  height: 430px;
  opacity: 0.55;
  transform: translateX(-50%) rotate(5deg);
}

.lus-main-showcase {
  position: relative;
  z-index: 3;
  width: min(980px, 92%);
  margin: 0 auto;
}

.lus-video-strip {
  width: min(760px, 88%);
  min-height: 0;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  padding: 10px;
  text-align: center;
  color: #ffffff;
  border-radius: 26px;
  background:
    radial-gradient(circle at 62% 42%, rgba(53, 181, 242, 0.26), transparent 30%),
    radial-gradient(circle at 10% 12%, rgba(255, 122, 47, 0.20), transparent 23%),
    linear-gradient(135deg, #071b3a, #0b2e65 58%, #123f86);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 26px 70px rgba(7, 23, 47, 0.22);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.lus-video-strip:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 78px rgba(7, 23, 47, 0.26);
  filter: saturate(1.05);
}

.lus-demo-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  display: block;
  border: 0;
  border-radius: 20px;
  background: #071b3a;
  object-fit: cover;
}

.lus-video-fallback {
  display: none;
  margin-top: 14px;
  color: #ffffff;
}

.lus-video-fallback strong {
  display: block;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lus-video-fallback span {
  display: block;
  max-width: 520px;
  margin: 8px auto 0;
  color: rgba(255,255,255,.78);
  font-weight: 750;
  line-height: 1.45;
}

.lus-play-dot {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.lus-play-dot::before {
  content: "";
  margin-left: 5px;
  border-left: 20px solid #ffffff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.lus-video-strip strong {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.lus-video-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-weight: 750;
}

.lus-video-link {
  width: fit-content;
  margin: 18px auto 0;
}

.lus-dashboard-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(219, 232, 247, 0.96);
  border-radius: 32px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 22px 60px rgba(7, 23, 47, 0.12);
}

.lus-dashboard-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 16px;
  padding: 22px 14px;
  background: linear-gradient(180deg, var(--navy), #0b2d61);
}

.lus-dashboard-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 13px;
  color: #ffffff;
  background: var(--brand-gradient);
  font-size: 13px;
  font-weight: 950;
}

.lus-dashboard-sidebar span {
  width: 24px;
  height: 24px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

.lus-dashboard-main {
  min-width: 0;
  padding: clamp(20px, 3vw, 32px);
}

.lus-dashboard-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.lus-dashboard-title small {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lus-dashboard-title h3 {
  margin: 5px 0 0;
  color: var(--text);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.lus-dashboard-title em {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--brand-gradient-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.lus-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.lus-kpi-grid div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 23, 47, 0.05);
}

.lus-kpi-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.lus-kpi-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.lus-kpi-grid div:nth-child(2) strong {
  color: var(--green);
}

.lus-kpi-grid div:nth-child(3) strong {
  color: var(--orange);
}

.lus-dashboard-content {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 16px;
}

.lus-action-panel,
.lus-reading-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,251,255,.94));
}

.lus-action-panel h4,
.lus-reading-panel h4 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.lus-action-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(219,232,247,.95);
  border-radius: 16px;
  background: #ffffff;
}

.lus-action-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15,98,254,.09);
}

.lus-action-row strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.lus-action-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.lus-action-row em {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(15,98,254,.09);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.lus-reading-box {
  padding: 15px;
  border: 1px solid rgba(15,98,254,.12);
  border-radius: 17px;
  background: #ffffff;
}

.lus-reading-box + .lus-reading-box {
  margin-top: 10px;
}

.lus-reading-box.soft {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,122,47,.10), transparent 32%),
    #ffffff;
}

.lus-reading-box strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.lus-reading-box p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.lus-crm-strip {
  width: min(900px, 92%);
  margin: 18px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(219,232,247,.95);
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 44px rgba(7,23,47,.10);
}

.lus-crm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.lus-crm-head strong {
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.lus-crm-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lus-crm-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 13px;
}

.lus-crm-metrics div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.lus-crm-metrics small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.lus-crm-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--blue-dark);
  font-size: 24px;
  letter-spacing: -0.05em;
}

.lus-crm-rows {
  display: grid;
  gap: 7px;
}

.lus-crm-rows span {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 13px;
  color: #30435d;
  background: #f8fbff;
  font-size: 12px;
  font-weight: 800;
}

.lus-crm-rows em,
.lus-crm-rows i {
  color: var(--muted);
  font-style: normal;
}

.lus-crm-rows i {
  justify-self: end;
  color: var(--orange);
}

.lus-service-float {
  position: absolute;
  z-index: 6;
  width: 230px;
  padding: 15px 16px;
  border: 1px solid rgba(219,232,247,.95);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,122,47,.10), transparent 35%),
    rgba(255,255,255,.96);
  box-shadow: 0 18px 48px rgba(7,23,47,.11);
  animation: lusFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.lus-service-float::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -4px;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.lus-service-float span {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.lus-service-float strong {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.float-crm {
  left: 34px;
  top: 140px;
}

.float-marketing {
  right: 36px;
  top: 146px;
  animation-delay: .8s;
}

.float-meta {
  left: 52px;
  top: 410px;
  animation-delay: 1.2s;
}

.float-site {
  right: 48px;
  top: 430px;
  animation-delay: .4s;
}

.float-auto {
  left: 18%;
  bottom: 46px;
  animation-delay: 1.6s;
}

.float-pixel {
  right: 16%;
  bottom: 44px;
  animation-delay: 1s;
}

@keyframes lusFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

.works-ecosystem-note {
  margin-top: 22px;
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,122,47,.09), transparent 28%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.works-ecosystem-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.works-ecosystem-note span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 750;
}

@media (max-width: 1120px) {
  .lus-ecosystem-stage {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 28px;
  }

  .lus-orbit {
    display: none;
  }

  .lus-main-showcase {
    grid-column: 1 / -1;
    width: 100%;
    order: 1;
  }

  .lus-service-float {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    pointer-events: auto;
    order: 2;
  }
}

@media (max-width: 820px) {
  .lus-dashboard-card {
    grid-template-columns: 1fr;
  }

  .lus-dashboard-sidebar {
    display: none;
  }

  .lus-dashboard-title,
  .lus-crm-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .lus-kpi-grid,
  .lus-dashboard-content,
  .lus-crm-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .works-ecosystem-section {
    padding: 38px 0;
  }

  .lus-ecosystem-stage {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 16px;
  }

  .lus-video-strip {
    width: 100%;
    min-height: 172px;
    border-radius: 22px;
  }

  .lus-dashboard-card,
  .lus-crm-strip {
    border-radius: 22px;
  }

  .lus-dashboard-main {
    padding: 18px;
  }

  .lus-kpi-grid,
  .lus-dashboard-content,
  .lus-crm-metrics {
    grid-template-columns: 1fr;
  }

  .lus-action-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .lus-action-row em {
    grid-column: 2;
    justify-self: start;
  }

  .lus-crm-rows span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lus-crm-rows i {
    justify-self: start;
  }

  .lus-service-float {
    animation: none;
  }
}

/* =========================================================
   LINKUPSITE - WHATSAPP FLOATING BUTTON
   ========================================================= */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-gradient);
  box-shadow: 0 18px 42px rgba(15, 98, 254, 0.28);
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(15, 98, 254, 0.34);
}

.floating-whatsapp-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.32);
  flex: 0 0 auto;
}

.floating-whatsapp-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}

.floating-whatsapp-icon svg path:first-child {
  fill: #25d366;
}

.floating-whatsapp-icon svg path:last-child {
  fill: #ffffff;
}

.floating-whatsapp-text {
  white-space: nowrap;
}

@media (max-width: 680px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
    min-height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-whatsapp-text {
    display: none;
  }

  .floating-whatsapp-icon {
    width: 46px;
    height: 46px;
  }

  .floating-whatsapp-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* =========================================================
   LINKUPSITE - PAGINA CONTATTI
   ========================================================= */

.contact-hero {
  padding: 78px 0 54px;
  background:
    radial-gradient(circle at 14% 0%, rgba(53, 181, 242, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.contact-hero .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.contact-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-contact-card,
.contact-info-panel,
.contact-form-panel,
.newsletter-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.quick-contact-card {
  padding: 20px;
}

.quick-contact-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(15, 98, 254, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.quick-contact-card h3,
.contact-info-panel h2,
.newsletter-card h2 {
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.03em;
}

.quick-contact-card p,
.contact-info-panel li,
.newsletter-card p {
  color: var(--muted);
  line-height: 1.55;
}

.quick-contact-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}

.contact-info-panel {
  padding: 22px;
}

.contact-info-panel ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info-panel li {
  position: relative;
  padding-left: 22px;
}

.contact-info-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 950;
}

.contact-section {
  padding: 54px 0;
  background:
    linear-gradient(180deg, rgba(238, 245, 255, 0.35), rgba(255, 255, 255, 0.85));
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.contact-form-panel {
  padding: 0;
}

.contact-form-panel .linkupsite-form-wrapper {
  border: 0;
  box-shadow: none;
}

.newsletter-card {
  padding: 24px;
}

.newsletter-card h2 {
  font-size: clamp(27px, 3.5vw, 38px);
  line-height: 1.08;
}

.newsletter-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.newsletter-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.newsletter-consent input {
  width: auto;
  margin-top: 3px;
  flex: 0 0 auto;
}

.newsletter-submit {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: var(--brand-gradient);
  box-shadow: 0 16px 32px rgba(15, 98, 254, 0.22);
  font-weight: 850;
  cursor: pointer;
}

.newsletter-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.newsletter-msg {
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.newsletter-msg.ok {
  color: var(--green);
}

.newsletter-msg.bad {
  color: #dc2626;
}

.faq-section {
  padding: 46px 0 62px;
}

.faq-section .faq-card {
  box-shadow: var(--shadow-soft);
}

@media (max-width: 980px) {
  .contact-hero .contact-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-hero {
    padding: 58px 0 42px;
  }

  .contact-section {
    padding: 38px 0;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page refinement */
.hero-copy h1::after,
.services-hero-copy h1::after,
.works-hero-copy h1::after,
.about-hero-copy h1::after,
.contact-copy h1::after {
  content: "";
  display: block;
  width: 138px;
  height: 5px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.contact-copy .contact-note {
  margin-top: 18px;
  color: var(--muted);
}

.contact-copy .contact-note strong {
  color: var(--blue);
}

.contact-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 0;
  border-radius: 15px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(15, 98, 254, .10), rgba(53, 181, 242, .12));
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.contact-icon.orange {
  color: var(--orange);
  background: linear-gradient(135deg, rgba(255, 122, 47, .12), rgba(15, 98, 254, .06));
}

.contact-icon.whatsapp {
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.24);
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon.whatsapp svg {
  stroke: currentColor;
  fill: none;
}

.quick-contact-grid .quick-contact-card:first-child .contact-icon {
  color: #ffffff;
  background: #25d366;
  font-size: 0;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.24);
}

.quick-contact-grid .quick-contact-card:first-child .contact-icon::before {
  content: none;
}

.quick-contact-grid .quick-contact-card:nth-child(2) .contact-icon {
  font-size: 0;
}

.quick-contact-grid .quick-contact-card:nth-child(2) .contact-icon::before {
  content: none;
}

.quick-contact-grid .quick-contact-card:nth-child(2) .contact-icon::after {
  content: none;
}

.quick-contact-card .contact-icon.whatsapp,
.quick-contact-card .contact-icon.email {
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
}

.quick-contact-card .contact-icon.email {
  color: var(--blue);
  background: rgba(15, 98, 254, 0.10);
}

.quick-contact-card .contact-icon.whatsapp svg,
.quick-contact-card .contact-icon.email svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-info-panel .contact-icon {
  margin-bottom: 0;
}

.contact-info-panel li::before {
  content: "";
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

.contact-section .container {
  display: grid;
  gap: 14px;
}

.contact-form-panel {
  overflow: hidden;
}

.contact-form-panel .linkupsite-form-wrapper {
  padding: clamp(24px, 4vw, 42px);
  border: 0;
  box-shadow: none;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 122, 47, .08), transparent 28%),
    #ffffff;
}

.contact-form-panel .landing-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.contact-form-panel .landing-contact-form .form-row.full,
.contact-form-panel .landing-contact-submit,
.contact-form-panel .landing-contact-msg {
  grid-column: 1 / -1;
}

.contact-form-panel .landing-contact-submit {
  width: 100%;
  min-height: 52px;
}

.linkupsite-form-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 22px;
  align-items: center;
  padding: 22px 28px;
  border-radius: 24px;
}

.newsletter-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.newsletter-copy .contact-icon {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.newsletter-card h2 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.newsletter-card p {
  margin: 0;
  font-size: 13px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: center;
  margin-top: 0;
}

.newsletter-form .newsletter-name {
  display: none;
}

.newsletter-form input[name="email"] {
  min-height: 46px;
}

.newsletter-consent,
.newsletter-msg {
  grid-column: 1 / -1;
}

.newsletter-consent {
  margin: 0;
  font-size: 12px;
}

.newsletter-submit {
  min-width: 126px;
  min-height: 46px;
  padding-inline: 18px;
}

.faq-card .contact-icon {
  margin-bottom: 14px;
}

.faq-card::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

@media (max-width: 980px) {
  .newsletter-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-copy h1::after,
  .services-hero-copy h1::after,
  .works-hero-copy h1::after,
  .about-hero-copy h1::after,
  .contact-copy h1::after {
    width: 96px;
    height: 4px;
    margin-top: 16px;
  }

  .contact-info-panel,
  .contact-form-panel .landing-contact-form,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    padding: 18px;
  }

  .newsletter-copy {
    align-items: flex-start;
  }

  .newsletter-submit {
    width: 100%;
  }

  .hero-mobile-consult {
    display: inline-flex;
  }
}

/* Unified brand buttons */
.btn-primary,
.solution-btn,
.landing-contact-submit,
.newsletter-submit,
.offer-btn.primary,
.support-btn,
.quick-coverage,
.connection-showcase-cta,
.tool-actions a:first-child,
.floating-whatsapp {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, #0f62fe 0%, #1f8cff 38%, #35b5f2 62%, #ff7a2f 100%);
  background: var(--brand-gradient);
  background-size: 140% 140%;
  box-shadow: var(--brand-shadow);
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background-position .18s ease;
}

.btn-primary:hover,
.solution-btn:hover,
.landing-contact-submit:hover,
.newsletter-submit:hover,
.offer-btn.primary:hover,
.support-btn:hover,
.quick-coverage:hover,
.connection-showcase-cta:hover,
.tool-actions a:first-child:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 98, 254, 0.28);
  filter: saturate(1.05);
  background-position: 100% 50%;
}

.btn-secondary,
.offer-btn,
.tool-actions a:not(:first-child) {
  color: var(--blue-dark);
  background: #ffffff;
  border: 1px solid rgba(15, 98, 254, 0.22);
  box-shadow: none;
}

.btn-secondary:hover,
.offer-btn:hover,
.tool-actions a:not(:first-child):hover {
  border-color: rgba(255, 122, 47, 0.45);
  box-shadow: 0 14px 28px rgba(255, 122, 47, 0.10);
  transform: translateY(-2px);
}

.final-cta .btn-light,
.final-cta-inner .btn-light,
.cta-panel .btn-light {
  color: var(--blue-dark);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.final-cta .btn-light:hover,
.final-cta-inner .btn-light:hover,
.cta-panel .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 122, 47, 0.16);
}

/* Responsive hardening */
@media (max-width: 1080px) {
  .services-grid,
  .method-grid,
  .why-grid,
  .about-timeline,
  .solutions-grid,
  .tools-grid,
  .offers-grid,
  .offers-grid.pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .services-hero-grid,
  .works-hero-grid,
  .about-hero-grid,
  .eolo-page-hero-grid,
  .contact-hero .contact-grid,
  .connection-showcase-panel,
  .eolo-tabs-head,
  .preventivo-grid,
  .contact-main-grid,
  .video-section-panel,
  .about-story-grid,
  .about-ai-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .services-page-head,
  .works-section-head,
  .about-method-head {
    max-width: 100%;
  }

  .site-nav {
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 24px 0 14px;
    border-radius: 20px 20px 0 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-brand {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .site-footer p {
    max-width: 360px;
    font-size: 12px;
  }

  .site-footer strong {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .site-footer a {
    margin: 5px 0;
    font-size: 12px;
  }

  .footer-bottom {
    margin-top: 16px;
    padding-top: 10px;
    gap: 8px;
    font-size: 11px;
  }

  .footer-legal-links {
    gap: 8px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section,
  .section-soft,
  .services-section,
  .works-section,
  .about-section,
  .contact-section,
  .eolo-tabs-section {
    padding: 38px 0;
  }

  .hero-copy h1,
  .page-hero h1,
  .services-hero-copy h1,
  .works-hero-copy h1,
  .about-hero-copy h1,
  .eolo-page-hero h1,
  .contact-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.03;
    letter-spacing: -0.045em;
  }

  .section-head h2,
  .contact-copy h2,
  .connection-card h2,
  .final-cta h2,
  .services-page-head h2,
  .works-section-head h2,
  .about-story-copy h2,
  .about-ai-copy h2,
  .about-method-head h2,
  .demo-panel h2,
  .cta-panel h2,
  .preventivo-copy h2 {
    font-size: clamp(26px, 8vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero-text,
  .page-hero p,
  .services-hero-copy p,
  .works-hero-copy p,
  .about-hero-copy p,
  .contact-copy p,
  .section-head p,
  .services-page-head p,
  .works-section-head p,
  .preventivo-copy p {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.6;
  }

  .hero-actions,
  .tool-actions,
  .offer-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .tool-actions a,
  .offer-btn,
  .solution-btn,
  .support-btn,
  .quick-coverage,
  .eolo-home-actions .btn,
  .eolo-home-actions .connection-showcase-cta,
  .landing-contact-submit,
  .newsletter-submit {
    width: 100%;
  }

  .services-grid,
  .product-grid,
  .method-grid,
  .why-grid,
  .detail-grid,
  .work-grid,
  .faq-grid,
  .solutions-grid,
  .start-grid,
  .pricing-grid,
  .scope-grid,
  .tools-grid,
  .adapt-grid,
  .offers-grid,
  .offers-grid.pro,
  .eolo-paths,
  .quick-contact-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .final-cta-inner,
  .cta-panel,
  .eolo-support-panel,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .works-product-stack,
  .hero-visual,
  .page-visual,
  .about-photo-card,
  .about-ai-visual,
  .video-placeholder {
    max-width: 100%;
  }

  .works-product-stack {
    min-height: 0;
    padding: 1px 0;
  }

  .stack-mini-grid,
  .demo-kpis,
  .offer-speed {
    grid-template-columns: 1fr;
  }

  .browser-content,
  .tool-media-mock {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-mobile-consult {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .btn,
  .solution-btn,
  .offer-btn,
  .tool-actions a,
  .support-btn,
  .quick-coverage,
  .landing-contact-submit,
  .newsletter-submit {
    min-height: 46px;
    padding-inline: 14px;
  }

  input,
  textarea,
  select {
    min-width: 0;
    font-size: 16px;
  }

  .contact-form,
  .linkupsite-form-wrapper,
  .newsletter-card,
  .service-card,
  .solution-card,
  .tool-card,
  .offer-card,
  .adapt-card,
  .pricing-grid article,
  .start-grid article,
  .scope-grid article {
    padding: 18px;
  }

  .final-cta-inner,
  .cta-panel,
  .eolo-tabs-panel,
  .connection-showcase-panel,
  .adapt-panel {
    padding: 20px;
  }
}

/* Connection showcase mobile refinement */
@media (max-width: 680px) {
  .connection-showcase-panel {
    gap: 26px;
    border-radius: 24px;
  }

  .connection-showcase-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
  }

  .connection-showcase-copy p {
    font-size: 16px;
    line-height: 1.62;
  }

  .connection-showcase-highlight {
    padding: 16px;
    border-radius: 16px;
  }

  .connection-showcase-visual {
    min-height: 0;
    display: grid;
    gap: 14px;
    align-items: start;
    overflow: visible;
  }

  .connection-network-sphere {
    position: relative;
    left: auto;
    top: auto;
    justify-self: center;
    width: min(210px, 58vw);
    height: min(210px, 58vw);
    margin-bottom: -64px;
    transform: none;
    z-index: 1;
  }

  .connection-browser-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 360px);
    justify-self: center;
    transform: none;
    z-index: 2;
  }

  .browser-content {
    grid-template-columns: minmax(0, 1fr) minmax(104px, .82fr);
    min-height: 150px;
    gap: 8px;
  }

  .brand-copy .brand-title {
    font-size: clamp(22px, 7vw, 25px);
  }

  .stairs-logo {
    min-height: 116px;
  }

  .connection-benefits-row {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .connection-benefit {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 13px;
  }

  .connection-benefit strong,
  .connection-benefit small {
    margin-top: 0;
  }

  .connection-benefit small {
    grid-column: 2;
  }
}

@media (max-width: 420px) {
  .connection-showcase-panel {
    padding: 18px;
  }

  .connection-network-sphere {
    width: min(176px, 56vw);
    height: min(176px, 56vw);
    margin-bottom: -50px;
  }

  .connection-browser-card {
    padding: 13px;
    border-radius: 20px;
  }

  .browser-content {
    grid-template-columns: 1fr;
  }

  .stairs-logo {
    height: 108px;
  }
}

/* EOLO connection section: mobile-safe layout */
@media (max-width: 680px) {
  .eolo-connection-note {
    padding: 36px 0;
  }

  .eolo-connection-note .connection-showcase-panel {
    display: block;
    padding: 18px;
    border-radius: 24px;
    overflow: hidden;
  }

  .eolo-connection-note .connection-showcase-panel::before {
    inset: 10px;
    border-radius: 18px;
  }

  .eolo-connection-note .connection-showcase-copy {
    margin-bottom: 22px;
  }

  .eolo-connection-note .connection-showcase-cta {
    width: 100%;
    min-height: 48px;
    margin-top: 12px;
    text-align: center;
  }

  .eolo-connection-note .connection-showcase-visual {
    min-height: 0;
    display: grid;
    gap: 12px;
    overflow: hidden;
  }

  .eolo-connection-note .connection-network-sphere,
  .eolo-connection-note .connection-browser-card,
  .eolo-connection-note .connection-benefits-row {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .eolo-connection-note .connection-network-sphere {
    width: min(142px, 42vw);
    height: min(142px, 42vw);
    justify-self: center;
    margin: 0 auto -24px;
    z-index: 1;
  }

  .eolo-connection-note .connection-network-sphere::after {
    inset: -18px -22px;
  }

  .eolo-connection-note .connection-browser-card {
    max-width: 100%;
    justify-self: center;
    margin: 0 auto;
    padding: 12px;
    border-radius: 20px;
    z-index: 2;
  }

  .eolo-connection-note .browser-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .eolo-connection-note .browser-brand {
    min-height: 96px;
  }

  .eolo-connection-note .brand-copy {
    min-height: 96px;
  }

  .eolo-connection-note .stairs-logo {
    height: 96px;
  }

  .eolo-connection-note .connection-benefits-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 2px;
  }

  .eolo-connection-note .connection-benefit {
    min-width: 0;
  }
}

/* EOLO page: compact mobile cards and tabs */
@media (max-width: 680px) {
  .eolo-tech-section {
    padding: 44px 0 24px;
  }

  .eolo-tech-head,
  .eolo-faq-head {
    text-align: left;
    margin-bottom: 22px;
  }

  .eolo-tech-head h2,
  .eolo-faq-head h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
  }

  .eolo-tech-head h2::after,
  .eolo-faq-head h2::after {
    margin-left: 0;
  }

  .eolo-tech-head p,
  .eolo-faq-head p {
    font-size: 16px;
    line-height: 1.62;
  }

  .eolo-tech-grid,
  .eolo-faq-grid {
    grid-template-columns: 1fr;
  }

  .eolo-tech-card,
  .eolo-tech-family,
  .eolo-tech-mini {
    border-radius: 22px;
  }

  .eolo-tech-card-large {
    grid-row: auto;
  }

  .eolo-tech-copy {
    padding: 22px;
  }

  .eolo-tech-copy h3,
  .eolo-tech-family h3 {
    font-size: 27px;
  }

  .eolo-tech-image {
    margin: 0 14px 14px;
    border-radius: 18px;
  }

  .eolo-tech-family img {
    aspect-ratio: 16 / 10;
  }

  .eolo-tech-family div,
  .eolo-tech-mini {
    padding: 20px;
  }

  .eolo-faq-section {
    padding: 42px 0 28px;
  }

  .eolo-faq-item summary {
    min-height: auto;
    padding: 16px 48px 16px 16px;
    font-size: 16px;
  }

  .eolo-faq-item p {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .eolo-page-hero {
    padding: 48px 0 34px;
  }

  .eolo-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eolo-page-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .eolo-page-card,
  .eolo-tabs-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .eolo-tabs-panel::before {
    inset: 10px;
    border-radius: 18px;
  }

  .eolo-tabs-head {
    gap: 16px;
    margin-bottom: 18px;
  }

  .eolo-tabs-head h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .eolo-tabs-head p {
    font-size: 15px;
    line-height: 1.55;
  }

  .eolo-logo-slot {
    width: 118px;
    min-height: 58px;
  }

  .eolo-paths {
    gap: 10px;
    margin-bottom: 16px;
  }

  .eolo-path-card {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
  }

  .eolo-path-card.active::before {
    width: 66px;
    height: 5px;
    margin-bottom: 10px;
  }

  .path-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    margin-bottom: 10px;
  }

  .eolo-path-card strong {
    font-size: 20px;
  }

  .eolo-path-card span {
    font-size: 14px;
  }

  .eolo-tabs {
    padding: 8px;
    border-radius: 20px;
  }

  .offer-panel-head {
    padding: 10px 6px 14px;
  }

  .offer-panel-head h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .offer-panel-head p {
    font-size: 15px;
  }

  .quick-coverage {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .offer-card {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .offer-title {
    font-size: clamp(21px, 6vw, 27px);
  }

  .offer-speed {
    grid-template-columns: 1fr;
  }

  .offer-promo {
    width: 100%;
    text-align: center;
    font-size: 17px;
  }

  .offer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .offer-btn {
    width: 100%;
    min-height: 46px;
  }

  .eolo-support-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .support-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .eolo-connection-note .connection-showcase-panel {
    grid-template-columns: 1fr;
  }

  .eolo-connection-note .connection-showcase-visual {
    min-height: 560px;
  }
}

/* Legal pages */
.legal-hero {
  padding: 76px 0 42px;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 181, 242, 0.16), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(255, 122, 47, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.legal-hero .eyebrow {
  margin-bottom: 18px;
}

.legal-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.legal-hero h1::after {
  content: "";
  display: block;
  width: 138px;
  height: 5px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.legal-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.legal-layout {
  padding: 46px 0 70px;
  background: linear-gradient(180deg, rgba(244, 248, 255, .76), rgba(255,255,255,.92));
}

.legal-card {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 181, 242, 0.10), transparent 28%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.legal-card section + section {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-card p {
  margin: 0 0 12px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--blue);
  font-weight: 850;
}

.legal-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(15, 98, 254, .14);
  border-radius: 18px;
  background: var(--brand-gradient-soft);
  color: var(--text);
  font-weight: 850;
}

@media (max-width: 680px) {
  .legal-hero {
    padding: 54px 0 32px;
  }

  .legal-hero h1::after {
    width: 96px;
    height: 4px;
  }

  .legal-layout {
    padding: 34px 0 48px;
  }

  .legal-card {
    border-radius: 22px;
  }
}

/* =========================================================
   LINKUPSITE - FOOTER COMPATTO
   ========================================================= */

.site-footer {
  margin-top: 18px;
  padding: 26px 0 12px;
  color: #dbeafe;
  background:
    linear-gradient(90deg, rgba(15, 98, 254, 0.72), rgba(53, 181, 242, 0.54), rgba(255, 122, 47, 0.62)) top / 100% 3px no-repeat,
    radial-gradient(circle at 12% 0%, rgba(53, 181, 242, 0.20), transparent 24%),
    radial-gradient(circle at 90% 8%, rgba(255, 122, 47, 0.20), transparent 20%),
    linear-gradient(135deg, #071b3a 0%, #08234b 58%, #09182f 100%);
  border-radius: 22px 22px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 0.8fr));
  gap: 20px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.site-footer p {
  max-width: 280px;
  margin: 0;
  color: #a9bdd8;
  font-size: 12px;
  line-height: 1.42;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.site-footer a {
  display: block;
  margin: 4px 0;
  color: #cbdaf0;
  font-size: 12px;
  line-height: 1.3;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #92a9c8;
  font-size: 11px;
}

.site-footer .footer-legal-links a {
  display: inline-flex;
  margin: 0;
  font-size: 12px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }
}

@media (max-width: 680px) {
  .site-footer {
    margin-top: 12px;
    padding: 18px 0 10px;
    border-radius: 18px 18px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-brand {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .site-footer p {
    max-width: 100%;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .site-footer strong {
    margin-bottom: 4px;
    font-size: 10.5px;
  }

  .site-footer a {
    margin: 3px 0;
    font-size: 10.5px;
    line-height: 1.22;
  }

  .footer-bottom {
    margin-top: 10px;
    padding-top: 8px;
    flex-direction: column;
    gap: 4px;
    padding-right: 72px;
    font-size: 10px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    min-height: 54px;
  }

  .floating-whatsapp-icon {
    width: 42px;
    height: 42px;
  }

  .floating-whatsapp-icon svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }

  .site-footer p {
    max-width: 92%;
  }
}

/* =========================================================
   LINKUPSITE - BLOG
   ========================================================= */

.blog-hero {
  padding: 76px 0 54px;
  background:
    radial-gradient(circle at 8% 10%, rgba(53, 181, 242, 0.16), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(255, 122, 47, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.blog-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.blog-hero-copy h1::after,
.blog-section-head h2::after {
  content: "";
  display: block;
  width: 132px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.blog-hero-copy p {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.blog-hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(15, 98, 254, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 181, 242, 0.16), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.blog-hero-panel article {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 251, 255, 0.88);
}

.blog-hero-panel span,
.blog-category {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 122, 47, 0.10);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-hero-panel strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.blog-section {
  padding: 58px 0;
}

.blog-section.compact {
  padding-top: 34px;
}

.blog-section-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.blog-section-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.blog-section-head h2::after {
  margin-left: auto;
  margin-right: auto;
}

.blog-section-head p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 22px;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 181, 242, 0.12), transparent 26%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.blog-card-media {
  min-height: 132px;
  margin-bottom: 20px;
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(90deg, var(--blue), var(--sky), var(--orange)) 18px 22px / 54% 9px no-repeat,
    linear-gradient(90deg, rgba(15, 98, 254, 0.28), rgba(53, 181, 242, 0.28)) 18px 48px / 42% 8px no-repeat,
    linear-gradient(135deg, rgba(255, 122, 47, 0.18), rgba(15, 98, 254, 0.12)) 18px 78px / 70% 38px no-repeat,
    #f8fbff;
}

.blog-card-media.crm {
  background:
    linear-gradient(90deg, rgba(22, 165, 109, 0.72), var(--sky)) 18px 22px / 46% 9px no-repeat,
    linear-gradient(90deg, rgba(15, 98, 254, 0.18), rgba(53, 181, 242, 0.18)) 18px 48px / 62% 8px no-repeat,
    linear-gradient(135deg, rgba(53, 181, 242, 0.16), rgba(255, 122, 47, 0.12)) 18px 78px / 74% 38px no-repeat,
    #f8fbff;
}

.blog-card-media.eolo {
  background:
    linear-gradient(90deg, var(--blue), var(--orange)) 18px 22px / 50% 9px no-repeat,
    radial-gradient(circle at 32px 82px, rgba(15, 98, 254, 0.22), transparent 18px),
    radial-gradient(circle at 96px 82px, rgba(53, 181, 242, 0.22), transparent 18px),
    #f8fbff;
}

.blog-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.blog-card p:not(.blog-category) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.blog-meta {
  margin-top: 14px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  margin-top: auto;
  padding: 0 15px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f62fe 0%, #35b5f2 58%, #ff7a2f 100%);
  font-size: 13px;
  font-weight: 950;
  box-shadow: var(--brand-shadow);
}

.blog-article-list {
  display: grid;
  gap: 18px;
}

.blog-article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.blog-article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--orange);
  background: rgba(255, 122, 47, 0.10);
  font-weight: 950;
}

.blog-article h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(25px, 3.4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.blog-article p:not(.blog-category) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.blog-cta {
  padding: 34px 0 64px;
}

.article-hero {
  padding: 74px 0 44px;
  background:
    radial-gradient(circle at 8% 12%, rgba(53, 181, 242, 0.16), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(255, 122, 47, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.article-shell {
  max-width: 920px;
}

.article-shell h1 {
  max-width: 840px;
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.article-shell h1::after {
  content: "";
  display: block;
  width: 132px;
  height: 5px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
}

.article-shell > p:not(.blog-category) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.article-meta {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--brand-gradient-soft);
  font-size: 13px;
  font-weight: 900;
}

.article-layout {
  padding: 42px 0 68px;
}

.article-cover {
  max-width: 980px;
  min-height: 260px;
  margin: 0 auto 24px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 122, 47, 0.13), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(53, 181, 242, 0.16), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.article-cover.crm {
  background:
    radial-gradient(circle at 12% 12%, rgba(22, 165, 109, 0.12), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(53, 181, 242, 0.16), transparent 30%),
    #ffffff;
}

.article-cover.eolo {
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 98, 254, 0.14), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(255, 122, 47, 0.12), transparent 24%),
    #ffffff;
}

.article-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.article-cover-mock {
  min-height: 210px;
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(90deg, var(--blue), var(--sky), var(--orange)) 28px 34px / 34% 10px no-repeat,
    linear-gradient(90deg, rgba(15, 98, 254, 0.28), rgba(53, 181, 242, 0.28)) 28px 64px / 50% 9px no-repeat,
    linear-gradient(135deg, rgba(255, 122, 47, 0.24), rgba(15, 98, 254, 0.18)) 28px 104px / 68% 78px no-repeat,
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.article-content h2 {
  margin: 32px 0 12px;
  color: var(--text);
  font-size: clamp(25px, 3.4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.article-content p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

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

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.article-content li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 750;
  line-height: 1.55;
}

.article-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

.article-highlight {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--blue);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 122, 47, 0.10), transparent 30%),
    #f8fbff;
}

.article-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 122, 47, 0.34), transparent 25%),
    linear-gradient(135deg, var(--blue), var(--sky) 62%, var(--orange));
}

.article-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 3.5vw, 38px);
}

.article-cta p {
  max-width: 560px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.article-related {
  max-width: 900px;
  margin: 28px auto 0;
}

.article-related h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-related-grid a {
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.article-related-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 122, 47, 0.10);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-related-grid strong {
  display: block;
  color: var(--text);
  font-size: 19px;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .blog-hero-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .blog-hero {
    padding: 54px 0 38px;
  }

  .blog-section {
    padding: 42px 0;
  }

  .blog-hero-panel,
  .blog-card,
  .blog-article {
    border-radius: 22px;
  }

  .blog-article {
    grid-template-columns: 1fr;
  }

  .blog-card a {
    width: 100%;
  }

  .article-hero {
    padding: 54px 0 34px;
  }

  .article-layout {
    padding: 34px 0 48px;
  }

  .article-cover,
  .article-content,
  .article-cta,
  .article-related-grid a {
    border-radius: 22px;
  }

  .article-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .article-cta .btn {
    width: 100%;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   LINKUPSITE - CARD MOBILE ADAPTATION
   ========================================================= */

@media (max-width: 680px) {
  .services-grid,
  .product-grid,
  .method-grid,
  .why-grid,
  .solutions-grid,
  .start-grid,
  .pricing-grid,
  .scope-grid,
  .tools-grid,
  .adapt-grid,
  .about-timeline,
  .about-method-grid,
  .blog-grid,
  .quick-contact-grid,
  .offers-grid,
  .offers-grid.pro,
  .eolo-paths {
    grid-template-columns: 1fr;
  }

  .service-card,
  .product-card,
  .method-grid article,
  .why-grid div,
  .solution-card,
  .start-grid article,
  .pricing-grid article,
  .scope-grid article,
  .tool-card,
  .adapt-card,
  .about-timeline article,
  .about-method-grid article,
  .blog-card,
  .quick-contact-card,
  .contact-info-panel,
  .offer-card,
  .eolo-path-card,
  .faq-card {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .product-card,
  .blog-card,
  .tool-card,
  .offer-card,
  .solution-card {
    display: flex;
    flex-direction: column;
  }

  .product-preview,
  .tool-media,
  .tool-media-image,
  .blog-card-media {
    width: 100%;
    min-height: 150px;
    max-height: none;
    border-radius: 16px;
  }

  .product-preview img,
  .tool-media img,
  .tool-media-image img,
  .blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-card h3,
  .product-card h3,
  .solution-card h3,
  .tool-card h3,
  .adapt-card h3,
  .blog-card h3,
  .offer-title {
    font-size: clamp(20px, 6.2vw, 27px);
    line-height: 1.14;
    letter-spacing: -0.03em;
  }

  .service-card p,
  .product-card p,
  .solution-card p,
  .tool-card p,
  .adapt-card p,
  .blog-card p,
  .offer-price,
  .offer-list li {
    font-size: 15px;
    line-height: 1.55;
  }

  .solution-card ul,
  .scope-grid ul,
  .offer-list {
    gap: 8px;
    margin: 14px 0;
  }

  .solution-btn,
  .offer-btn,
  .tool-actions a,
  .blog-card a {
    width: 100%;
    min-height: 44px;
    white-space: normal;
    text-align: center;
  }

  .offer-actions,
  .tool-actions {
    width: 100%;
  }

  .eolo-path-card {
    text-align: center;
  }

  .eolo-path-card .path-icon {
    margin-inline: auto;
  }

  .offer-card {
    justify-content: flex-start;
  }

  .offer-top {
    padding-top: 22px;
  }
}

@media (max-width: 680px) {
  .lus3d-carousel {
    min-height: 510px;
  }

  .lus3d-stage {
    height: 488px;
  }

  .lus3d-card {
    width: min(100%, 360px);
    min-height: auto;
    border-radius: 22px;
  }

  .lus3d-media {
    min-height: 260px;
  }

  .lus3d-media img {
    height: 260px;
  }

  .lus3d-card-copy {
    padding: 16px 18px 18px;
  }

  .lus3d-card-copy h3 {
    font-size: clamp(22px, 6.8vw, 28px);
  }

  .lus3d-card-copy p {
    font-size: 15px;
  }
}

/* Lavori: mobile cleanup for carousel and tool sections */
@media (max-width: 720px) {
  .works-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .works-product-stack {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 16px;
  }

  .works-product-stack::before {
    inset: 10px;
    border-radius: 20px;
  }

  .works-product-stack .stack-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }

  .lus3d-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .lus3d-carousel {
    min-height: auto;
    display: block;
    margin-top: 22px;
    perspective: none;
  }

  .lus3d-stage {
    height: auto;
    min-height: 0;
    display: block;
    transform-style: flat;
  }

  .lus3d-card {
    display: none;
    position: relative;
    width: 100%;
    min-height: auto;
    transform: none;
    filter: none;
  }

  .lus3d-card.is-active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: 0 18px 42px rgba(7, 23, 47, 0.12);
  }

  .lus3d-card.is-prev,
  .lus3d-card.is-next,
  .lus3d-card.is-far {
    display: none;
    opacity: 0;
    transform: none;
  }

  .lus3d-media {
    min-height: 260px;
  }

  .lus3d-media::before {
    inset: 14px;
  }

  .lus3d-media img {
    height: 260px;
    object-fit: cover;
    object-position: top center;
  }

  .lus3d-control {
    top: 142px;
    width: 42px;
    height: 42px;
  }

  .lus3d-prev {
    left: 8px;
  }

  .lus3d-next {
    right: 8px;
  }

  .lus3d-dots {
    margin-top: 16px;
  }

  .works-ecosystem-section {
    padding: 42px 0;
  }

  .works-ecosystem-head {
    margin-bottom: 22px;
  }

  .lus-ecosystem-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
    border-radius: 24px;
  }

  .lus-main-showcase {
    width: 100%;
  }

  .lus-service-float {
    width: 100%;
    animation: none;
  }

  .lus-video-strip {
    width: 100%;
    padding: 8px;
  }

  .lus-demo-frame {
    min-height: 190px;
    border-radius: 16px;
  }

  .lus-dashboard-card {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 22px;
  }

  .lus-dashboard-sidebar {
    display: none;
  }

  .lus-dashboard-title,
  .lus-crm-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .lus-kpi-grid,
  .lus-dashboard-content,
  .lus-crm-metrics {
    grid-template-columns: 1fr;
  }

  .lus-action-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .lus-action-row em {
    grid-column: 2;
    justify-self: start;
  }

  .lus-crm-strip {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
  }

  .lus-crm-rows span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .works-ecosystem-note,
  .adapt-panel,
  .cta-panel {
    border-radius: 22px;
  }
}

/* Lavori: immagini vetrina leggibili su tablet e smartphone */
@media (min-width: 681px) and (max-width: 980px) {
  .lus3d-carousel {
    min-height: 720px;
  }

  .lus3d-stage {
    height: 700px;
  }

  .lus3d-card {
    width: min(820px, 92vw);
    min-height: 620px;
  }

  .lus3d-media {
    min-height: 470px;
  }

  .lus3d-media img {
    height: 470px;
    object-fit: contain;
    object-position: center top;
    background: #ffffff;
  }
}

@media (max-width: 680px) {
  .lus3d-panel {
    padding: 14px;
  }

  .lus3d-carousel {
    min-height: auto;
    margin-top: 18px;
  }

  .lus3d-stage {
    height: auto;
    min-height: 0;
  }

  .lus3d-card {
    width: 100%;
    border-radius: 20px;
  }

  .lus3d-media {
    min-height: clamp(360px, 86vw, 500px);
    padding: 8px;
    background: #ffffff;
  }

  .lus3d-media::before {
    display: none;
  }

  .lus3d-media img {
    width: 100%;
    height: clamp(360px, 86vw, 500px);
    object-fit: contain;
    object-position: center top;
    border-radius: 14px;
    background: #ffffff;
  }

  .lus3d-card-copy {
    padding: 14px 14px 16px;
  }

  .lus3d-card-copy span {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .lus3d-card-copy h3 {
    font-size: clamp(20px, 6.2vw, 26px);
  }

  .lus3d-card-copy p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .lus3d-control {
    top: clamp(190px, 43vw, 260px);
    width: 40px;
    height: 40px;
  }

  .lus3d-prev {
    left: 6px;
  }

  .lus3d-next {
    right: 6px;
  }
}

@media (max-width: 420px) {
  .lus3d-panel {
    padding: 10px;
  }

  .lus3d-media,
  .lus3d-media img {
    min-height: 390px;
    height: 390px;
  }
}

/* Lavori: dashboard operativa leggibile su smartphone */
.lus-action-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(15, 98, 254, 0.09);
  font-size: 0;
}

.lus-action-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lus-action-icon.hot {
  color: var(--orange);
  background: rgba(255, 122, 47, 0.12);
}

.lus-action-icon.hot svg {
  fill: rgba(255, 122, 47, 0.16);
}

.lus-action-icon.up {
  color: var(--blue-dark);
  background: var(--brand-gradient-soft);
}

@media (max-width: 720px) {
  .lus-dashboard-card {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 22px;
  }

  .lus-dashboard-sidebar {
    display: none;
  }

  .lus-dashboard-main {
    padding: 16px;
  }

  .lus-dashboard-title {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .lus-dashboard-title h3 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .lus-dashboard-title em {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 10px;
    white-space: nowrap;
  }

  .lus-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .lus-kpi-grid div {
    min-height: 76px;
    padding: 12px;
  }

  .lus-kpi-grid strong {
    font-size: 26px;
  }

  .lus-dashboard-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lus-action-panel,
  .lus-reading-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .lus-action-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 10px;
  }

  .lus-action-row strong {
    font-size: 13px;
  }

  .lus-action-row small {
    font-size: 11px;
  }

  .lus-action-row em {
    grid-column: auto;
    justify-self: end;
    padding: 5px 8px;
    font-size: 9px;
  }

  .lus-reading-box {
    padding: 12px;
  }

  .lus-crm-strip {
    width: 100%;
    padding: 14px;
  }

  .lus-crm-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .lus-crm-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lus-crm-rows span {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 390px) {
  .lus-dashboard-title {
    flex-direction: column;
  }

  .lus-action-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .lus-action-row em {
    grid-column: 2;
    justify-self: start;
  }
}

/* Lavori: immagini slide in primo piano su smartphone */
@media (max-width: 680px) {
  .lus3d-stage {
    height: auto;
    min-height: 0;
  }

  .lus3d-card.is-active {
    width: 100%;
    min-height: auto;
  }

  .lus3d-card.is-prev,
  .lus3d-card.is-next,
  .lus3d-card.is-far {
    display: none;
  }

  .lus3d-card.is-active .lus3d-media {
    min-height: clamp(420px, 112vw, 560px);
    padding: 0;
    overflow: hidden;
    background: #ffffff;
  }

  .lus3d-card.is-active .lus3d-media img {
    width: 100%;
    height: clamp(420px, 112vw, 560px);
    min-height: clamp(420px, 112vw, 560px);
    object-fit: cover;
    object-position: left top;
    border-radius: 18px 18px 0 0;
    transform: scale(1.02);
    transform-origin: left top;
  }

  .lus3d-card-copy {
    padding: 14px 16px 18px;
  }
}

/* EOLO: menu a tendina mobile, tab desktop invariati */
.eolo-mobile-accordion {
  display: none;
}

@media (max-width: 980px) {
  .eolo-paths,
  .eolo-tabs {
    display: none;
  }

  .eolo-mobile-accordion {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .eolo-mobile-item {
    display: grid;
    gap: 10px;
  }

  .eolo-mobile-summary,
  .eolo-mobile-trigger {
    width: 100%;
  }

  .eolo-mobile-summary {
    list-style: none;
    cursor: pointer;
  }

  .eolo-mobile-summary::-webkit-details-marker {
    display: none;
  }

  .eolo-mobile-item[open] .eolo-mobile-summary {
    border-color: rgba(255, 122, 47, 0.42);
    box-shadow: 0 18px 42px rgba(7, 23, 47, 0.08);
  }

  .eolo-mobile-item[open] .eolo-mobile-summary::before {
    content: "";
    display: block;
    width: 46px;
    height: 5px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange));
  }

  .eolo-mobile-arrow {
    width: 13px;
    height: 13px;
    margin-top: 10px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg);
    transition: transform 0.18s ease;
  }

  .eolo-mobile-item[open] .eolo-mobile-arrow {
    transform: rotate(225deg);
  }

  .eolo-mobile-panel {
    display: block;
    padding: 14px;
    border: 1px solid rgba(15, 98, 254, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 36px rgba(7, 23, 47, 0.07);
  }

  .eolo-mobile-panel .offer-panel-head {
    display: block;
  }

  .eolo-mobile-panel .quick-coverage {
    width: 100%;
    margin-top: 14px;
  }

  .eolo-mobile-panel .offers-grid,
  .eolo-mobile-panel .offers-grid.pro {
    grid-template-columns: 1fr;
  }
}

/* Lavori: carosello strumenti in single-card mode su mobile */
@media (max-width: 760px) {
  .lus3d-carousel {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    overflow: visible;
    padding: 0 10px;
  }

  .lus3d-stage {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    perspective: none;
  }

  .lus3d-card {
    display: none;
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin: 0 auto;
    opacity: 1;
    transform: none !important;
    box-sizing: border-box;
  }

  .lus3d-card.is-active {
    display: block;
    z-index: 2;
    opacity: 1;
    transform: none !important;
  }

  .lus3d-card.is-prev,
  .lus3d-card.is-next,
  .lus3d-card.is-far {
    display: none;
    opacity: 0;
    transform: none !important;
  }

  .lus3d-media {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
  }

  .lus3d-media::before,
  .lus3d-media::after {
    display: none;
  }

  .lus3d-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 18px 18px 0 0;
    transform: none;
  }

  .lus3d-card-copy {
    padding: 18px 16px 20px;
  }

  .lus3d-control {
    top: 34%;
    z-index: 5;
    transform: translateY(-50%);
  }

  .lus3d-prev {
    left: 0;
  }

  .lus3d-next {
    right: 0;
  }

  .lus3d-dots {
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .lus3d-carousel {
    padding: 0 8px;
  }

  .lus3d-media {
    aspect-ratio: 16 / 9;
  }

  .lus3d-control {
    width: 34px;
    height: 34px;
  }
}

/* Lavori: ecosistema desktop-like scalato su mobile */
.lus-ecosystem-scale-shell {
  position: relative;
  width: 100%;
}

@media (max-width: 760px) {
  .lus-ecosystem-scale-shell {
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
  }

  .lus-ecosystem-scale-shell .lus-ecosystem-stage {
    position: relative;
    display: block !important;
    left: auto !important;
    width: 980px;
    max-width: none;
    min-height: 830px;
    flex: 0 0 980px;
    margin: 0 auto;
    padding: 34px;
    overflow: hidden;
    border-radius: 38px;
    transform-origin: top center;
  }

  .lus-ecosystem-scale-shell .lus-orbit {
    display: block;
  }

  .lus-ecosystem-scale-shell .lus-main-showcase {
    position: relative;
    z-index: 3;
    width: min(980px, 92%);
    margin: 0 auto;
    grid-column: auto;
    order: initial;
  }

  .lus-ecosystem-scale-shell .lus-service-float {
    position: absolute !important;
    inset: auto;
    width: 230px;
    pointer-events: none;
    animation: lusFloat 6s ease-in-out infinite;
    order: initial;
  }

  .lus-ecosystem-scale-shell .float-crm {
    left: 34px;
    top: 140px;
  }

  .lus-ecosystem-scale-shell .float-marketing {
    right: 36px;
    top: 146px;
  }

  .lus-ecosystem-scale-shell .float-meta {
    left: 52px;
    top: 410px;
  }

  .lus-ecosystem-scale-shell .float-site {
    right: 48px;
    top: 430px;
  }

  .lus-ecosystem-scale-shell .float-auto {
    left: 18%;
    bottom: 46px;
  }

  .lus-ecosystem-scale-shell .float-pixel {
    right: 16%;
    bottom: 44px;
  }

  .lus-ecosystem-scale-shell .lus-video-strip {
    width: min(760px, 88%);
    min-height: 0;
    margin: 0 auto 22px;
    padding: 10px;
    border-radius: 26px;
  }

  .lus-ecosystem-scale-shell .lus-dashboard-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    min-height: 420px;
    border-radius: 32px;
  }

  .lus-ecosystem-scale-shell .lus-dashboard-sidebar {
    display: grid;
  }

  .lus-ecosystem-scale-shell .lus-dashboard-main {
    padding: 32px;
  }

  .lus-ecosystem-scale-shell .lus-dashboard-title,
  .lus-ecosystem-scale-shell .lus-crm-head {
    flex-direction: row;
    align-items: flex-start;
  }

  .lus-ecosystem-scale-shell .lus-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lus-ecosystem-scale-shell .lus-dashboard-content {
    grid-template-columns: 1.06fr .94fr;
  }

  .lus-ecosystem-scale-shell .lus-action-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
  }

  .lus-ecosystem-scale-shell .lus-action-row em {
    grid-column: auto;
    justify-self: auto;
  }

  .lus-ecosystem-scale-shell .lus-crm-strip {
    width: min(900px, 92%);
    padding: 18px 20px;
    border-radius: 24px;
  }

  .lus-ecosystem-scale-shell .lus-crm-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lus-ecosystem-scale-shell .lus-crm-rows span {
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
  }

  .lus-ecosystem-scale-shell .lus-crm-rows i {
    justify-self: end;
  }
}

/* Lavori: fix finale carosello orizzontale + canvas ecosistema centrato */
.lus3d-media {
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 9;
  padding: 18px;
  background: #ffffff;
}

.lus3d-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 760px) {
  .lus3d-carousel {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    overflow: visible;
    padding: 0 38px;
  }

  .lus3d-stage {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    perspective: none;
  }

  .lus3d-card {
    display: none;
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin: 0 auto;
    opacity: 1;
    transform: none !important;
    box-sizing: border-box;
  }

  .lus3d-card.is-active {
    display: block;
    z-index: 2;
    opacity: 1;
    transform: none !important;
  }

  .lus3d-card.is-prev,
  .lus3d-card.is-next,
  .lus3d-card.is-far {
    display: none;
    opacity: 0;
    transform: none !important;
  }

  .lus3d-media,
  .lus3d-card.is-active .lus3d-media {
    width: 100%;
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
    padding: 8px;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
  }

  .lus3d-media::before,
  .lus3d-media::after {
    display: none;
  }

  .lus3d-media img,
  .lus3d-card.is-active .lus3d-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    transform: none;
  }

  .lus3d-card-copy {
    padding: 18px 16px 20px;
  }

  .lus3d-control {
    top: 36%;
    z-index: 5;
    transform: translateY(-50%);
  }

  .lus3d-prev {
    left: 2px;
  }

  .lus3d-next {
    right: 2px;
  }

  .lus3d-dots {
    margin-top: 18px;
  }

  .lus-ecosystem-scale-shell {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .lus-ecosystem-scale-shell .lus-ecosystem-stage {
    position: relative;
    left: auto !important;
    display: block !important;
    width: 980px !important;
    max-width: none;
    flex: 0 0 980px;
    margin: 0 auto !important;
    transform-origin: top center;
  }

  .lus-ecosystem-scale-shell .lus-service-float {
    position: absolute !important;
    width: 230px;
    order: initial;
  }
}

@media (max-width: 420px) {
  .lus3d-carousel {
    padding: 0 32px;
  }

  .lus3d-media,
  .lus3d-card.is-active .lus3d-media {
    aspect-ratio: 16 / 10;
  }
}

/* Lavori: rollback mobile ecosistema, canvas desktop-like centrato */
@media (max-width: 760px) {
  .works-ecosystem-section {
    overflow: hidden;
  }

  .lus-ecosystem-scale-shell {
    display: block !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: clamp(500px, 132vw, 640px) !important;
    overflow: hidden !important;
  }

  .lus-ecosystem-scale-shell .lus-ecosystem-stage {
    position: absolute !important;
    inset: 0 auto auto 0;
    display: block !important;
    width: 980px !important;
    max-width: none !important;
    min-height: 830px !important;
    flex: none !important;
    margin: 0 !important;
    padding: 34px !important;
    overflow: hidden !important;
    border-radius: 38px;
    transform-origin: top left;
  }

  .lus-ecosystem-scale-shell .lus-orbit {
    display: block !important;
  }

  .lus-ecosystem-scale-shell .lus-service-float {
    display: block !important;
    position: absolute !important;
    inset: auto;
    width: 285px;
    padding: 20px 22px;
    pointer-events: none;
    order: initial;
    animation: lusFloat 6s ease-in-out infinite;
  }

  .lus-ecosystem-scale-shell .lus-service-float::before {
    width: 58px;
    height: 6px;
  }

  .lus-ecosystem-scale-shell .lus-service-float span {
    font-size: 19px;
  }

  .lus-ecosystem-scale-shell .lus-service-float strong {
    font-size: 15px;
    line-height: 1.35;
  }

  .lus-ecosystem-scale-shell .float-crm {
    left: 24px;
    top: 140px;
  }

  .lus-ecosystem-scale-shell .float-marketing {
    right: 24px;
    top: 146px;
  }

  .lus-ecosystem-scale-shell .float-meta {
    left: 28px;
    top: 410px;
  }

  .lus-ecosystem-scale-shell .float-site {
    right: 28px;
    top: 430px;
  }

  .lus-ecosystem-scale-shell .float-auto {
    left: 18%;
    bottom: 46px;
  }

  .lus-ecosystem-scale-shell .float-pixel {
    right: 16%;
    bottom: 44px;
  }

  .lus-ecosystem-scale-shell .lus-main-showcase {
    position: relative;
    z-index: 3;
    width: min(980px, 92%) !important;
    margin: 0 auto !important;
  }

  .lus-ecosystem-scale-shell .lus-video-strip {
    width: min(760px, 88%) !important;
    min-height: 0;
    margin: 0 auto 22px !important;
    padding: 10px !important;
    border-radius: 26px;
  }

  .lus-ecosystem-scale-shell .lus-dashboard-card {
    display: grid !important;
    grid-template-columns: 74px 1fr;
    min-height: 420px !important;
    border-radius: 32px;
  }

  .lus-ecosystem-scale-shell .lus-dashboard-sidebar {
    display: grid !important;
  }

  .lus-ecosystem-scale-shell .lus-dashboard-main {
    padding: 32px !important;
  }

  .lus-ecosystem-scale-shell .lus-dashboard-title,
  .lus-ecosystem-scale-shell .lus-crm-head {
    display: flex;
    flex-direction: row !important;
    align-items: flex-start !important;
  }

  .lus-ecosystem-scale-shell .lus-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .lus-ecosystem-scale-shell .lus-dashboard-content {
    grid-template-columns: 1.06fr .94fr !important;
  }

  .lus-ecosystem-scale-shell .lus-crm-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .lus-ecosystem-scale-shell .lus-action-row {
    grid-template-columns: 34px minmax(0, 1fr) auto !important;
  }

  .lus-ecosystem-scale-shell .lus-action-row em {
    grid-column: auto !important;
    justify-self: auto !important;
  }

  .lus-ecosystem-scale-shell .lus-crm-strip {
    width: min(900px, 92%) !important;
    margin: 18px auto 0 !important;
    padding: 18px 20px !important;
    border-radius: 24px;
  }

  .lus-ecosystem-scale-shell .lus-crm-rows span {
    grid-template-columns: 1fr 1fr auto !important;
    gap: 12px !important;
  }

  .lus-ecosystem-scale-shell .lus-crm-rows i {
    justify-self: end !important;
  }
}
