:root {
  --navy: #17324d;
  --navy2: #10263b;
  --orange: #f58235;
  --text: #1d2935;
  --muted: #647180;
  --line: #dfe6ec;
  --soft: #f4f7fa;
  --shadow: 0 20px 52px rgba(18,43,65,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter,Segoe UI,Arial,sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}

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

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

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1280px,calc(100% - 36px));
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 205px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-size: 18px;
  color: var(--navy);
}

.brand small {
  font-size: 10px;
  color: var(--muted);
  font-weight: 750;
  white-space: nowrap;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.desktop-nav>a {
  white-space: nowrap;
}

.desktop-nav>a:not(.btn):hover {
  color: var(--orange);
}

.header-phone {
  display: grid !important;
  line-height: 1.05;
}

.header-phone span {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--navy);
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  border: 1px solid var(--orange);
  box-shadow: 0 10px 24px rgba(245,130,53,.22);
  transition: .2s;
}

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

.btn-small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 12px;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: #9fb0c0;
  box-shadow: none;
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.mobile-nav {
  padding: 10px 18px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav a {
  display: block;
  padding: 11px 4px;
  font-weight: 800;
  border-bottom: 1px solid #eef1f4;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background: linear-gradient(135deg,#f7fafc 0%,#fff 55%,#fff4ec 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .45;
}

.hero-glow.one {
  width: 330px;
  height: 330px;
  right: 4%;
  top: -120px;
  background: #ffd6bb;
}

.hero-glow.two {
  width: 270px;
  height: 270px;
  left: -80px;
  bottom: -130px;
  background: #cfe0ee;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff2e9;
  color: #9d4f1c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0;
  font-size: clamp(45px,5.4vw,74px);
  line-height: .98;
  color: var(--navy2);
  letter-spacing: -.045em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 720px;
  margin: 0;
  color: #4d5d6b;
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 28px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  color: #516170;
}

.trust-row svg {
  width: 19px;
  height: 19px;
  color: var(--orange);
}

.visual-card {
  position: relative;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.visual-card>img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 19px;
}

.word-float,.excel-float,.manage-float {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(214,224,232,.9);
  border-radius: 15px;
  box-shadow: 0 14px 35px rgba(13,34,54,.18);
}

.word-float strong,.excel-float strong,.manage-float strong {
  font-size: 13px;
  color: var(--navy);
}

.word-float small,.excel-float small,.manage-float small {
  grid-column: 2;
  color: var(--muted);
  font-size: 10px;
}

.word-float {
  left: -25px;
  top: 45px;
}

.excel-float {
  right: -20px;
  top: 190px;
}

.manage-float {
  left: 30px;
  bottom: -22px;
}

.manage-float svg {
  grid-row: 1/3;
  color: var(--orange);
  width: 38px;
  height: 38px;
}

.office-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.office-icon.large {
  width: 54px;
  height: 54px;
  font-size: 31px;
}

.word-icon {
  background: #185abd;
}

.excel-icon {
  background: #217346;
}

.pain-strip {
  background: var(--navy2);
  color: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.pain-grid div {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.13);
}

.pain-grid div:last-child {
  border-right: 0;
}

.pain-grid strong,.pain-grid span {
  display: block;
}

.pain-grid strong {
  font-size: 14px;
}

.pain-grid span {
  margin-top: 4px;
  color: #b8c8d5;
  font-size: 12px;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.compact-section {
  padding: 55px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.reverse-mobile .content {
  order: 1;
}

.reverse-mobile .media-frame {
  order: 2;
}

.media-frame {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.content h2,.section-heading h2,.process-unified h2 {
  margin: 15px 0 17px;
  font-size: clamp(32px,4vw,51px);
  line-height: 1.07;
  color: var(--navy2);
  letter-spacing: -.035em;
}

.content p,.section-heading p {
  color: var(--muted);
  font-size: 16px;
}

.quote-box {
  margin-top: 22px;
  padding: 17px 19px;
  border-left: 5px solid var(--orange);
  background: #fff5ee;
  border-radius: 0 14px 14px 0;
  color: var(--navy);
  font-weight: 850;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .section-label {
  margin: auto;
}

.three-pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.pillar {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(18,43,65,.06);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
}

.word-bg {
  background: #eaf2ff;
}

.excel-bg {
  background: #e9f7ee;
}

.manage-bg {
  background: #fff1e7;
  color: var(--orange);
}

.manage-bg svg {
  width: 44px;
  height: 44px;
}

.pillar h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.pillar p {
  margin: 0;
  color: var(--muted);
}

.process-unified {
  text-align: center;
  padding: 34px;
  background: linear-gradient(145deg,#fff,#f4f7fa);
  border: 1px solid var(--line);
  border-radius: 27px;
  box-shadow: var(--shadow);
}

.process-unified .section-label {
  margin: auto;
}

.unified-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.2fr;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
}

.unified-flow>div {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.unified-flow>div svg {
  width: 52px;
  height: 52px;
  color: var(--orange);
}

.unified-flow>b {
  font-size: 30px;
  color: var(--orange);
}

.unified-flow strong {
  color: var(--navy);
}

.unified-flow small {
  color: var(--muted);
}

.unified-flow .result {
  background: var(--navy);
  color: #fff;
}

.unified-flow .result img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 7px;
}

.unified-flow .result strong {
  color: #fff;
}

.unified-flow .result small {
  color: #c6d4df;
}

.email-risk {
  background: #fff;
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.risk-grid>div {
  padding: 15px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.risk-grid svg {
  color: var(--orange);
}

.risk-grid strong,.risk-grid span {
  display: block;
}

.risk-grid strong {
  margin: 8px 0 3px;
  color: var(--navy);
}

.risk-grid span {
  font-size: 12px;
  color: var(--muted);
}

.email-card {
  padding: 30px;
  background: linear-gradient(135deg,var(--navy2),#244c6d);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.email-window {
  padding: 22px;
  background: #fff;
  border-radius: 18px;
}

.email-top {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.email-top i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d9e0e6;
}

.email-top i:first-child {
  background: #ff7c6d;
}

.email-line {
  height: 10px;
  margin: 11px 0;
  background: #edf1f4;
  border-radius: 10px;
}

.email-line.short {
  width: 40%;
}

.email-line.medium {
  width: 70%;
}

.email-price {
  margin: 27px 0;
  padding: 18px;
  background: #fff2e9;
  border-radius: 12px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
}

.email-window button {
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: #185abd;
  color: #fff;
  font-weight: 900;
}

.email-warning {
  margin-top: 17px;
  color: #fff;
  text-align: center;
  font-size: 21px;
  font-weight: 950;
}

.lost-time,
.time-back,
.contact-section {
  padding: 88px 0;
  background: linear-gradient(135deg,var(--navy2),#204667);
  color: #fff;
}

.lost-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: stretch;
}

.lost-time-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.lost-time-copy .btn {
  margin-top: 8px;
}

.lost-time-image {
  margin-top: 42px;
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.18);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.lost-time-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  transition: transform .35s;
}

.lost-time-image:hover img {
  transform: scale(1.03);
}

.lost-time h2,
.time-back h2,
.contact-copy h2 {
  color: #fff;
}

.lost-time p,
.time-back p,
.contact-copy p {
  color: #c8d5df;
  font-size: 17px;
}

.section-label.light {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.calculator-card {
  padding: 28px;
  background: #fff;
  color: var(--text);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(0,0,0,.23);
}

.calculator-card>label {
  font-weight: 900;
  color: var(--navy);
}

.calculator-card input[type=range] {
  width: 100%;
  accent-color: var(--orange);
  margin: 14px 0;
}

.range-value {
  text-align: center;
  margin-bottom: 18px;
  color: var(--muted);
}

.range-value strong {
  font-size: 36px;
  color: var(--orange);
}

.calc-input-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.calc-input-grid label {
  position: relative;
  padding: 10px 12px;
  background: var(--soft);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #4f5c69;
}

.calc-input-grid input {
  width: 100%;
  margin-top: 5px;
  padding: 10px 34px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-weight: 900;
}

.calc-input-grid label span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--muted);
  font-size: 12px;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin: 18px 0;
}

.calc-results div {
  padding: 13px;
  background: #fff7f1;
  border: 1px solid #ffd8bf;
  border-radius: 12px;
}

.calc-results span {
  display: block;
  color: #7c6a5d;
  font-size: 11px;
  font-weight: 800;
}

.calc-results strong {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 19px;
}

.calculator-card>small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.benefit-list>div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-list svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.benefit-list span {
  color: var(--muted);
}

.sector-detail-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 17px;
}

.sector-detail {
  position: relative;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(18,43,65,.05);
}

.sector-number {
  position: absolute;
  right: 18px;
  top: 16px;
  color: #dbe4eb;
  font-size: 35px;
  font-weight: 950;
}

.sector-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff2e9;
  color: var(--orange);
}

.sector-icon svg {
  width: 29px;
  height: 29px;
}

.sector-detail h3 {
  max-width: 85%;
  margin: 15px 0 11px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.sector-detail p {
  margin: 9px 0;
  color: var(--muted);
  font-size: 13px;
}

.sector-detail p strong {
  color: var(--navy);
}

.compare-wrap {
  overflow: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 950px;
  border-collapse: collapse;
  background: #fff;
}

.compare-table th,.compare-table td {
  padding: 15px 13px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
}

.compare-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
}

.compare-table tbody th {
  text-align: left;
  color: var(--navy);
  font-size: 12px;
}

.compare-table .best {
  background: #fff2e9 !important;
  color: var(--navy2) !important;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 15px;
}

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

.feature-card>div {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #fff2e9;
  color: var(--orange);
  border-radius: 13px;
}

.feature-card svg {
  width: 27px;
  height: 27px;
}

.feature-card h3 {
  margin: 14px 0 8px;
  font-size: 16px;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.time-back .two-col {
  grid-template-columns: .9fr 1.1fr;
}

.time-back .media-frame img {
  height: 430px;
}

/* FAQ */

.faq-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 8% 10%, rgba(245,130,53,.10), transparent 260px),
    radial-gradient(circle at 92% 85%, rgba(23,50,77,.08), transparent 300px),
    linear-gradient(180deg,#ffffff 0%,#f6f9fb 100%);
}

.faq-section::before {
  content: "?";
  position: absolute;
  top: 30px;
  right: 4%;
  color: rgba(23,50,77,.035);
  font-size: 320px;
  line-height: 1;
  font-weight: 950;
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 980px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
}

.faq-list details {
  position: relative;
  align-self: start;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid #dce5ec;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18,43,65,.055);
  transition: transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.faq-list details:hover {
  transform: translateY(-2px);
  border-color: #ffc9a5;
  box-shadow: 0 18px 38px rgba(18,43,65,.09);
}

.faq-list details[open] {
  border-color: #f7b98e;
  box-shadow: 0 18px 42px rgba(245,130,53,.12);
}

.faq-list summary {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 58px 18px 20px;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.faq-list summary > *:first-child {
  flex: 1;
  text-align: left;
}

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

.faq-list summary::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-right: 2px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(245,130,53,.12);
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff2e9;
  color: var(--orange);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease,
    background .2s ease,
    color .2s ease;
}

.faq-list details[open] summary {
  color: #fff;
  background: linear-gradient(135deg,var(--navy),#245474);
}

.faq-list details[open] summary::before {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.15);
}

.faq-list details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  color: #fff;
  background: rgba(255,255,255,.15);
}

.faq-list p {
  margin: 0;
  padding: 18px 22px 21px;
  border-top: 1px solid #edf1f4;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ANALISI PREVENTIVO REALE */

.quote-analysis-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: radial-gradient(circle at 92% 15%, rgba(245,130,53,.19), transparent 330px),
    linear-gradient(135deg,#f7fafc 0%,#ffffff 52%,#fff4ec 100%);
}

.quote-analysis-section::before {
  content: "";
  position: absolute;
  left: -170px;
  bottom: -220px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(23,50,77,.06);
}

.quote-analysis-panel {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  padding: 42px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce5ec;
  border-radius: 30px;
  box-shadow: 0 28px 75px rgba(18,43,65,.14);
}

.quote-analysis-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg,var(--orange),#ffb076);
}

.quote-analysis-copy {
  align-self: center;
  padding: 10px 4px 10px 10px;
}

.quote-analysis-copy h2 {
  max-width: 620px;
  margin: 17px 0 18px;
  color: var(--navy2);
  font-size: clamp(34px,4.2vw,55px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.quote-analysis-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.quote-analysis-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}

.quote-analysis-actions .btn-outline {
  gap: 8px;
  background: #fff;
}

.quote-analysis-actions .btn-outline svg {
  width: 21px;
  height: 21px;
}

.quote-analysis-steps {
  position: relative;
  display: grid;
  gap: 14px;
}

.quote-analysis-steps::before {
  content: "";
  position: absolute;
  top: 62px;
  bottom: 62px;
  left: 37px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(245,130,53,.15),
    rgba(245,130,53,.75),
    rgba(245,130,53,.15)
  );
}

.quote-analysis-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px 58px minmax(0,1fr);
  gap: 15px;
  align-items: center;
  min-height: 128px;
  padding: 19px 20px;
  background: linear-gradient(135deg,#f8fafc,#fff);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 27px rgba(18,43,65,.05);
  transition: .2s ease;
}

.quote-analysis-step:hover {
  transform: translateX(4px);
  border-color: #ffc49b;
  box-shadow: 0 16px 34px rgba(18,43,65,.09);
}

.quote-analysis-number {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 0 0 7px #fff;
  font-size: 12px;
  font-weight: 950;
}

.quote-analysis-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #fff2e9;
  color: var(--orange);
}

.quote-analysis-icon svg {
  width: 31px;
  height: 31px;
}

.quote-analysis-step h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.quote-analysis-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-analysis-badge {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 2px;
  padding: 16px 19px;
  color: #fff;
  background: linear-gradient(135deg,var(--navy2),#245474);
  border-radius: 17px;
}

.quote-analysis-badge>svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #ffb17a;
}

.quote-analysis-badge span {
  display: grid;
}

.quote-analysis-badge strong {
  font-size: 15px;
}

.quote-analysis-badge small {
  margin-top: 2px;
  color: #cbd9e3;
  font-size: 12px;
}

/* CONTATTI */

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 45px;
  align-items: start;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin: 25px 0;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 14px;
}

.contact-direct svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.contact-direct span {
  display: grid;
}

.contact-direct small {
  color: #c5d3de;
}

.company-box {
  display: grid;
  gap: 3px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: rgba(255,255,255,.08);
}

.contact-card {
  padding: 28px;
  background: #fff;
  color: var(--text);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

.contact-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
}

.contact-card>p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 13px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  color: #4d5c68;
  font-size: 12px;
  font-weight: 850;
}

.form-grid input,.form-grid select,.form-grid textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
}

.form-grid .full {
  grid-column: 1/-1;
}

.attachment small {
  font-weight: 500;
}

.privacy {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
}

.privacy input {
  width: auto;
  margin-top: 4px;
}

.submit-btn {
  width: 100%;
  margin-top: 16px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
}

.form-message {
  margin: 12px 0;
  padding: 12px;
  border-radius: 10px;
  font-weight: 800;
}

.form-message.success {
  background: #eaf8ef;
  color: #176b35;
}

.form-message.error {
  background: #fff0f0;
  color: #a12f2f;
}

.site-footer {
  background: #0d2133;
  color: #d4e0e9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
  padding: 45px 0;
}

.footer-grid img {
  width: 75px;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
}

.footer-grid h3 {
  color: #fff;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
}

.footer-grid p {
  color: #b9c9d5;
}

.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #9eb0bf;
  font-size: 12px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: grid;
  gap: 8px;
}

.floating-actions a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  font-size: 12px;
  font-weight: 900;
}

.floating-actions a:first-child {
  background: #17324d;
}

.floating-actions svg {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

@media (max-width:1180px) {
  .desktop-nav {
    gap: 10px;
    font-size: 12px;
  }

  .brand {
    min-width: 190px;
  }

  .header-phone {
    display: none !important;
  }

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

@media (max-width:980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .two-col,
  .lost-grid,
  .contact-grid,
  .quote-analysis-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .reverse-mobile .content,
  .reverse-mobile .media-frame {
    order: initial;
  }

  .three-pillars,
  .sector-detail-grid,
  .faq-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .unified-flow>b {
    display: none;
  }

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

  .visual-card>img {
    height: 430px;
  }

  .word-float {
    left: 10px;
  }

  .excel-float {
    right: 10px;
  }

  .manage-float {
    bottom: 10px;
  }

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

  .pain-grid div:nth-child(2) {
    border-right: 0;
  }

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

  .quote-analysis-panel {
    gap: 30px;
    padding: 32px;
  }
}

@media (max-width:680px) {
  .container {
    width: min(100% - 24px,1280px);
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .brand span {
    display: grid;
    min-width: 0;
    line-height: 1.05;
  }

  .brand strong {
    font-size: 15px;
    white-space: nowrap;
  }

  .brand small {
    font-size: 8px;
    white-space: nowrap;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .visual-card>img {
    height: 310px;
  }

  .word-float,
  .excel-float,
  .manage-float {
    position: static;
    margin-top: 8px;
  }

  .pain-grid,
  .three-pillars,
  .sector-detail-grid,
  .risk-grid,
  .calc-input-grid,
  .calc-results,
  .form-grid,
  .feature-grid,
  .unified-flow,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .pain-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .section,
  .lost-time,
  .time-back,
  .contact-section,
  .quote-analysis-section {
    padding: 62px 0;
  }

  .media-frame img {
    height: 360px;
  }

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

  .floating-actions span {
    display: none;
  }

  .floating-actions a {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
  }

  .contact-card {
    padding: 20px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .process-unified {
    padding: 22px;
  }

  .unified-flow>div {
    min-height: 135px;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 16px 52px 16px 17px;
    font-size: 14px;
  }

  .faq-list p {
    padding: 16px 18px 19px;
  }

  .quote-analysis-panel {
    padding: 24px 19px;
    border-radius: 23px;
  }

  .quote-analysis-copy {
    padding: 0;
  }

  .quote-analysis-copy h2 {
    font-size: 36px;
  }

  .quote-analysis-actions {
    display: grid;
  }

  .quote-analysis-actions .btn {
    width: 100%;
  }

  .quote-analysis-step {
    grid-template-columns: 42px 48px minmax(0,1fr);
    gap: 10px;
    padding: 15px 13px;
  }

  .quote-analysis-steps::before {
    left: 21px;
  }

  .quote-analysis-number {
    width: 34px;
    height: 34px;
  }

  .quote-analysis-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .quote-analysis-icon svg {
    width: 26px;
    height: 26px;
  }

  .quote-analysis-step h3 {
    font-size: 16px;
  }

  .quote-analysis-step p {
    font-size: 12px;
  }

  .quote-analysis-badge {
    align-items: flex-start;
  }
}

/* MENU, COSTI, CLOUD E CONFRONTO */

.desktop-nav {
  gap: 7px;
  font-size: 12px;
}

.desktop-nav>a:not(.btn):not(.header-phone) {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid #dfe6ec;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 3px 10px rgba(18,43,65,.04);
  transition: .2s;
}

.desktop-nav>a:not(.btn):not(.header-phone):hover {
  color: var(--orange);
  border-color: #ffcaa8;
  background: #fff8f3;
  transform: translateY(-1px);
}

.header-phone {
  display: flex !important;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 4px 9px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.header-phone>svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.header-phone>span {
  display: grid;
  line-height: 1.05;
}

.header-phone small {
  font-size: 8px;
  color: var(--muted);
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--navy);
  font-size: 12px;
}

.nav-wrap {
  gap: 10px;
}

.brand {
  min-width: 190px;
}

.pricing-section {
  background: linear-gradient(180deg,#fff 0%,#f6f9fb 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.pricing-copy h2 {
  margin: 14px 0 16px;
  color: var(--navy);
  font-size: clamp(32px,4.2vw,54px);
  line-height: 1.05;
}

.pricing-copy p {
  color: var(--muted);
  font-size: 17px;
}

.price-tier-list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  margin: 24px 0 12px;
}

.price-tier-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.price-tier-list strong {
  color: var(--navy);
}

.price-tier-list span {
  color: var(--orange);
  font-weight: 900;
}

.pricing-copy>small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.pricing-calculator {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.pricing-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.pricing-card-head>div {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff2e9;
  color: var(--orange);
}

.pricing-card-head svg {
  width: 31px;
  height: 31px;
}

.pricing-card-head span {
  display: grid;
}

.pricing-card-head strong {
  color: var(--navy);
  font-size: 21px;
}

.pricing-card-head small {
  color: var(--muted);
}

.pricing-calculator>label {
  color: var(--navy);
  font-weight: 900;
}

.pricing-calculator input[type=range] {
  width: 100%;
  margin: 16px 0 4px;
  accent-color: var(--orange);
}

.pricing-users-value {
  text-align: center;
  color: var(--muted);
}

.pricing-users-value strong {
  color: var(--orange);
  font-size: 42px;
}

.pricing-results {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin: 20px 0;
}

.pricing-results>div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafb;
}

.pricing-results span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.pricing-results strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 18px;
}

.pricing-results .pricing-highlight {
  background: #fff2e9;
  border-color: #ffc9a4;
}

.pricing-results .pricing-highlight strong {
  color: var(--orange);
  font-size: 22px;
}

.pricing-calculator>p {
  color: var(--muted);
  font-size: 13px;
}

.cloud-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(135deg,#102c45,#1f5278);
  color: #fff;
}

.cloud-section:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -130px;
  top: -210px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}

.cloud-grid {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 65px;
  align-items: center;
}

.cloud-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.cloud-main-icon {
  width: 285px;
  height: 285px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle,#fff 0%,#edf7ff 70%);
  color: #2d83bb;
  box-shadow: 0 30px 80px rgba(0,0,0,.28),0 0 0 24px rgba(255,255,255,.06);
}

.cloud-main-icon svg {
  width: 190px;
  height: 190px;
  stroke-width: 1.35;
}

.cloud-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

.cloud-node svg {
  width: 25px;
  height: 25px;
}

.node-users {
  top: 35px;
  left: 5px;
}

.node-devices {
  right: 0;
  top: 125px;
}

.node-update {
  bottom: 30px;
  left: 45px;
}

.cloud-copy h2 {
  margin: 15px 0;
  color: #fff;
  font-size: clamp(34px,4.5vw,58px);
  line-height: 1.04;
}

.cloud-copy>p {
  color: #cedde8;
  font-size: 17px;
}

.cloud-benefits {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 13px;
  margin: 25px 0;
}

.cloud-benefits>div {
  display: flex;
  gap: 11px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
}

.cloud-benefits svg {
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  color: #ffad72;
}

.cloud-benefits span {
  display: grid;
  color: #c9d9e5;
  font-size: 12px;
}

.cloud-benefits strong {
  color: #fff;
  font-size: 14px;
  margin-bottom: 3px;
}

.compare-wrap {
  border: 1px solid #dbe4eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(18,43,65,.12);
}

.compare-table th,.compare-table td {
  padding: 14px 12px;
  border-color: #dfe6ec;
}

.compare-table thead th {
  height: 96px;
  background: linear-gradient(180deg,#173c5b,#102f49);
  vertical-align: middle;
}

.compare-table thead th:not(.need-head) {
  min-width: 130px;
}

.compare-table thead th b {
  display: block;
  margin-top: 7px;
  font-size: 13px;
}

.compare-table thead .best {
  background: linear-gradient(180deg,#ffefe3,#fff8f3) !important;
  color: var(--navy) !important;
}

.compare-table thead .best img {
  width: 46px;
  height: 46px;
  margin: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 11px;
  padding: 5px;
}

.compare-tool {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}

.compare-tool svg {
  width: 25px;
  height: 25px;
}

.tool-word {
  background: #185abd;
}

.tool-excel {
  background: #107c41;
}

.tool-mail {
  background: #7c5ce5;
}

.tool-manage {
  background: #4b6478;
}

.compare-table tbody tr:nth-child(even) {
  background: #f8fafb;
}

.compare-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  background: inherit;
  font-weight: 900;
}

.compare-table td {
  position: relative;
}

.compare-table td span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.compare-table td span:before {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}

.compare-table td.status-good span:before {
  content: "✓";
  color: #fff;
  background: #209653;
}

.compare-table td.status-mid span:before {
  content: "•";
  color: #fff;
  background: #e19a24;
}

.compare-table td.status-bad span:before {
  content: "×";
  color: #fff;
  background: #c74b4b;
}

.compare-table td.best {
  background: #fff4eb !important;
  border-left-color: #ffd0b1;
  border-right-color: #ffd0b1;
}

.compare-table td.best span {
  font-weight: 900;
  color: var(--navy);
}

/* CONFRONTO: DESKTOP E MOBILE */

.compare-desktop {
  display: block;
}

.compare-mobile {
  display: none;
}

.tool-preventivatore {
  background: #fff;
  border: 1px solid #ffd0b1;
}

.tool-preventivatore img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Schede del confronto mobile */

.compare-mobile-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 13px 34px rgba(18,43,65,.08);
}

.compare-mobile-card summary {
  list-style: none;
  cursor: pointer;
}

.compare-mobile-card summary::-webkit-details-marker {
  display: none;
}

.compare-mobile-card summary::marker {
  display: none;
}

.compare-mobile-card-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 15px 55px 15px 18px;
  color: #fff;
  background: linear-gradient(135deg,var(--navy2),#245474);
}

.compare-mobile-card-head::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -8px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(45deg);
  transition: .25s;
}

.compare-mobile-card[open] .compare-mobile-card-head::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.compare-mobile-number {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 11px;
  font-weight: 950;
}

.compare-mobile-card-head h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.compare-mobile-values {
  display: grid;
}

.compare-mobile-value {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 11px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.compare-mobile-value:nth-child(even) {
  background: #f8fafb;
}

.compare-mobile-value.is-best {
  position: relative;
  background: linear-gradient(135deg,#fff1e6,#fff8f3);
  border-top-color: #ffc9a5;
}

.compare-mobile-value.is-best::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--orange);
}

.compare-mobile-tool {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.compare-mobile-tool .compare-tool {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  margin: 0;
  border-radius: 10px;
  font-size: 20px;
}

.compare-mobile-tool .compare-tool svg {
  width: 21px;
  height: 21px;
}

.compare-mobile-tool .tool-preventivatore img {
  width: 27px;
  height: 27px;
}

.compare-mobile-tool strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
}

.compare-mobile-value.is-best .compare-mobile-tool strong {
  color: var(--orange);
  font-weight: 950;
}

.compare-mobile-result {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  max-width: 170px;
  color: #4e5d69;
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
}

.compare-mobile-result i {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
}

.compare-mobile-result.status-good i {
  background: #209653;
}

.compare-mobile-result.status-good i::before {
  content: "✓";
}

.compare-mobile-result.status-mid i {
  background: #e19a24;
}

.compare-mobile-result.status-mid i::before {
  content: "•";
}

.compare-mobile-result.status-bad i {
  background: #c74b4b;
}

.compare-mobile-result.status-bad i::before {
  content: "×";
}

.compare-mobile-value.is-best .compare-mobile-result {
  color: var(--navy);
  font-weight: 900;
}

@media (max-width:1250px) {
  .desktop-nav {
    gap: 5px;
    font-size: 11px;
  }

  .desktop-nav>a:not(.btn):not(.header-phone) {
    padding: 0 8px;
  }

  .brand {
    min-width: 175px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 9px;
  }
}

@media (max-width:1100px) {
  .header-phone {
    display: none !important;
  }

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

  .cloud-visual {
    min-height: 390px;
  }

  .pricing-results {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-results .pricing-highlight {
    grid-column: 1/-1;
  }
}

@media (max-width:760px) {
  .price-tier-list,.cloud-benefits,.pricing-results {
    grid-template-columns: 1fr;
  }

  .pricing-results .pricing-highlight {
    grid-column: auto;
  }

  .cloud-main-icon {
    width: 230px;
    height: 230px;
  }

  .cloud-main-icon svg {
    width: 155px;
    height: 155px;
  }

  .cloud-node {
    font-size: 11px;
  }

  .node-users {
    left: 0;
  }

  .node-devices {
    right: 0;
  }

  .node-update {
    left: 10px;
  }

  .compare-table thead th {
    height: 82px;
  }

  .compare-tool {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}

/* MENU COMPATTO, ICONE SETTORI E COSTO GIORNALIERO */

.desktop-nav {
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.desktop-nav>a:not(.btn):not(.header-phone) {
  min-height: 38px;
  padding: 0 11px;
  border-radius: 11px;
}

.desktop-nav .btn-small {
  white-space: nowrap;
}

.pricing-benefit-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 12px;
}

.pricing-benefit-list>div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.pricing-benefit-list svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.pricing-benefit-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.pricing-benefit-list strong {
  color: var(--navy);
}

.pricing-results-single {
  grid-template-columns: 1fr;
}

.pricing-results-single .pricing-highlight {
  display: grid;
  justify-items: center;
  padding: 22px;
  text-align: center;
}

.pricing-results-single .pricing-highlight span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.pricing-results-single .pricing-highlight strong {
  margin-top: 7px;
  font-size: 38px;
}

.pricing-results-single .pricing-highlight small {
  max-width: 440px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.sector-icon svg {
  width: 30px;
  height: 30px;
}

@media (max-width:1320px) {
  .desktop-nav {
    gap: 6px;
    font-size: 12px;
  }

  .desktop-nav>a:not(.btn):not(.header-phone) {
    padding: 0 9px;
  }

  .brand {
    min-width: 172px;
  }

  .header-phone {
    display: none !important;
  }
}

@media (max-width:1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* PERDITA MENSILE E PREZZO GIORNALIERO SCALARE */

.monthly-loss-box {
  margin: 18px 0 14px;
  padding: 18px;
  border: 1px solid #ffc69f;
  border-radius: 18px;
  background: linear-gradient(135deg,#fff8f2,#fff);
}

.monthly-loss-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.monthly-loss-head>div {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
}

.monthly-loss-head svg {
  width: 27px;
  height: 27px;
}

.monthly-loss-head span {
  display: grid;
}

.monthly-loss-head strong {
  color: var(--navy);
  font-size: 18px;
}

.monthly-loss-head small {
  color: var(--muted);
  font-size: 12px;
}

.monthly-loss-results {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.monthly-loss-results>div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.monthly-loss-results span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.monthly-loss-results strong {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 19px;
}

.monthly-loss-box p {
  margin: 13px 0 0;
  color: #596977;
  font-size: 12px;
  line-height: 1.5;
}

.pricing-results-v5 {
  grid-template-columns: 1.15fr .85fr;
}

.pricing-results-v5>div {
  display: grid;
  align-content: center;
  min-height: 150px;
}

.pricing-results-v5 .pricing-total-day {
  justify-items: center;
  text-align: center;
}

.pricing-results-v5 .pricing-total-day strong {
  font-size: 34px;
}

.pricing-results-v5 .pricing-total-day small {
  margin-top: 3px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.pricing-unit-day span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.pricing-unit-day strong {
  font-size: 28px;
  color: var(--navy);
}

.pricing-unit-day small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width:760px) {
  .monthly-loss-results,
  .pricing-results-v5 {
    grid-template-columns: 1fr;
  }

  /* ==========================================================
     MOBILE — IL TEMPO TORNA ALLA VENDITA
     ========================================================== */

  .time-back .two-col {
    display: grid;
    grid-template-columns: minmax(0,1fr) !important;
    gap: 28px;
    align-items: stretch;
  }

  .time-back .content,
  .time-back .media-frame {
    width: 100%;
    min-width: 0;
  }

  .time-back .content {
    order: 1;
  }

  .time-back .media-frame {
    order: 2;
    overflow: hidden;
    border-radius: 22px;
  }

  .time-back .content .section-label {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .time-back .content h2 {
    width: 100%;
    max-width: none;
    margin: 16px 0;
    font-size: clamp(34px,10vw,46px);
    line-height: 1.04;
    letter-spacing: -.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .time-back .content p {
    width: 100%;
    max-width: none;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .time-back .content .btn {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    white-space: normal;
    text-align: center;
  }

  .time-back .media-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
  }

  /* ==========================================================
     MOBILE — CONFRONTO A SCHEDE, SENZA SCROLL
     ========================================================== */

  .compare-desktop {
    display: none;
  }

  .compare-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #confronto .section-heading {
    margin-bottom: 28px;
  }

  #confronto .section-heading h2 {
    font-size: clamp(34px,10vw,45px);
    line-height: 1.04;
  }

  .compare-mobile-card {
    width: 100%;
  }

  .compare-mobile-value {
    grid-template-columns: minmax(0,1fr) minmax(95px,145px);
  }

  .compare-mobile-result {
    width: 100%;
    max-width: none;
  }
}

/* HEADER MOBILE: LOGO COMPLETO */

@media (max-width: 680px) {
  .nav-wrap {
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .brand span {
    display: grid;
    min-width: 0;
    line-height: 1.05;
  }

  .brand strong {
    font-size: 15px;
    white-space: nowrap;
  }

  .brand small {
    font-size: 8px;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 44px;
  }
}
