:root {
  --bg: #ffffff;
  --soft: #f6f6f6;
  --line: #e4e4e4;
  --line-strong: #d5d5d5;
  --text: #202020;
  --muted: #666666;
  --accent: #c20e19;
  --accent-dark: #a10c15;
  --accent-rgb: 194, 14, 25;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.35);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.8rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  background: #fff;
}

.utility-inner,
.site-header-inner,
.section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: 42px;
}

.utility-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.utility-mail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: currentColor;
}

.utility-mail-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
}

.utility-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.utility-social-link svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.utility-social-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 88px;
}

.brand img {
  width: 176px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}

.site-nav > a,
.nav-trigger {
  padding: 0;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-group.is-current > .nav-trigger,
.nav-trigger:hover {
  color: var(--accent);
}

.nav-group {
  position: relative;
  padding-bottom: 0.45rem;
  margin-bottom: -0.45rem;
}

.nav-trigger::after {
  content: "";
  display: inline-block;
  margin-left: 0.45rem;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  min-width: 220px;
  padding: 0.75rem 0;
  background: #fff;
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease;
}

.nav-panel a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
}

.nav-panel a:hover,
.nav-panel a[aria-current="page"] {
  color: var(--accent);
  background: var(--soft);
}

.nav-group:hover .nav-panel,
.nav-group:focus-within .nav-panel {
  opacity: 1;
  visibility: visible;
}

.contact-chip,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-chip,
.btn-primary {
  color: #fff;
  background: var(--accent);
}

.contact-chip:hover,
.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  background: #fff;
  border-color: var(--line-strong);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: 1px solid var(--line-strong);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero-shell {
  width: 100%;
  max-width: none;
  padding-top: 1.25rem;
  padding-left: 0;
  padding-right: 0;
}

.page-intro {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 2.5rem;
}

.hero,
.page-intro-card,
.cta-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  background: linear-gradient(rgba(22, 22, 22, 0.34), rgba(22, 22, 22, 0.34)), var(--hero-image) center 38% / cover no-repeat;
}

.hero-grid,
.page-intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
}

.hero-grid {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 1rem;
  color: #fff;
}

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

.hero-grid-single .hero-copy {
  max-width: 760px;
}

.hero-copy p,
.page-intro-card p {
  max-width: 58ch;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-intro-card .eyebrow,
.cta-panel .eyebrow,
.band .eyebrow {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.stat-card,
.segment-card,
.product-card,
.editorial-card,
.service-card,
.contact-card,
.legal-card,
.quote-card,
.visual-card,
.aside-box {
  border: 1px solid var(--line);
  background: #fff;
}

.metric-strip,
.grid-3,
.grid-4,
.product-grid,
.editorial-grid,
.service-grid,
.contact-grid,
.legal-grid {
  display: grid;
  gap: 1.25rem;
}

.metric-strip,
.grid-3,
.service-grid,
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

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

.metric-strip {
  width: min(100%, var(--content));
  margin: 2.25rem auto 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.stat-card,
.segment-body,
.product-card,
.editorial-body,
.service-card,
.contact-card,
.legal-card,
.quote-card,
.aside-box {
  padding: 1.4rem;
}

.stat-card strong,
.kpi strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
}

.stat-card {
  min-height: 124px;
}

.stat-card-feature {
  grid-row: 1 / span 2;
  display: grid;
  align-content: center;
  padding: 1.75rem;
  border-color: rgba(var(--accent-rgb), 0.18);
  background: #fbf8f8;
}

.stat-card-feature strong {
  margin-bottom: 0.55rem;
  font-size: clamp(2.7rem, 5vw, 4rem);
}

.stat-card-feature span {
  max-width: 16ch;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.45;
}

.stat-card span {
  display: block;
  max-width: 22ch;
}

.stat-card span,
.section-copy p,
.segment-card p,
.product-card p,
.service-card p,
.editorial-card p,
.contact-card p,
.legal-card p,
.lead,
.aside-box p,
.quote-card p {
  color: var(--muted);
}

.section,
.page-intro {
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.section-cta {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section.band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(1rem, calc((100vw - var(--content)) / 2 + 1rem));
  padding-right: max(1rem, calc((100vw - var(--content)) / 2 + 1rem));
}

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

.solutions-head {
  max-width: 920px;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.8rem;
}

.solutions-head .eyebrow {
  margin-bottom: 0;
}

.solutions-head h2 {
  max-width: 760px;
  margin: 0;
  line-height: 1.08;
}

.solutions-head .lead {
  max-width: 820px;
  margin: 0;
  line-height: 1.72;
}

.segment-card,
.editorial-card,
.visual-card {
  overflow: hidden;
}

.segment-card img,
.editorial-card img,
.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.system-diagram-card {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 1.5rem;
}

.system-diagram-card img {
  width: 100%;
  max-width: 640px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.product-card img {
  width: auto;
  max-height: 54px;
  margin-bottom: 1rem;
}

.badge,
.tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.segment-card a,
.product-card a,
.editorial-card a,
.mini-cta {
  color: var(--accent);
  font-weight: 700;
}

.news-meta {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-feed-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.news-list-item {
  display: grid;
  gap: 0.2rem;
}

.news-list-item span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-list-item strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.4;
}

.news-list-item:hover strong {
  color: var(--accent);
}

.news-page-feature {
  margin-bottom: 1.5rem;
}

.news-archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.news-archive-card .editorial-body {
  display: grid;
  align-content: start;
}

.news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 2rem;
}

.news-actions [hidden] {
  display: none;
}

.solutions-browser {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(260px, 0.92fr) minmax(320px, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.solutions-column {
  border: 1px solid var(--line);
  background: #fff;
}

.solutions-label {
  margin: 0;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solutions-list {
  display: grid;
}

.solution-option,
.solution-product-option {
  width: 100%;
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.2rem;
  color: var(--text);
  text-align: left;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.solution-option.is-active,
.solution-product-option.is-active {
  background: #faf6f6;
  box-shadow: inset 3px 0 0 var(--accent);
}

.solution-option-title,
.solution-product-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.solution-option-copy,
.solution-product-category {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.solutions-detail-column {
  display: grid;
  grid-template-rows: auto 1fr;
}

.solutions-detail {
  height: 100%;
}

.solution-detail-card {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.4rem;
}

.solution-detail-card h3,
.solution-detail-card p {
  margin: 0;
}

.solution-detail-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
}

.solution-detail-list li {
  margin: 0;
  line-height: 1.6;
}

.solution-detail-kicker {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-detail-card .btn {
  justify-self: start;
  margin-top: 0.3rem;
}

.split {
  align-items: center;
}

.split-partner {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.split-narrow-visual {
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
}

.split-partner .visual-card.soft-frame {
  min-height: 280px;
  padding: 1.5rem;
}

.split-partner .visual-card.soft-frame img {
  width: min(220px, 100%);
}

.split-partner .section-copy {
  max-width: 760px;
}

.split-partner-editorial {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.split-partner-editorial .visual-card.soft-frame {
  width: min(240px, 100%);
  min-height: auto;
  padding: 1rem 1.25rem;
  border-color: rgba(var(--accent-rgb), 0.14);
  background: #faf7f7;
}

.split-partner-editorial .visual-card.soft-frame img {
  width: min(190px, 100%);
}

.split-partner-editorial .section-copy {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 1rem;
}

.split-partner-editorial .section-copy h2,
.split-partner-editorial .section-copy p,
.split-partner-editorial .section-copy .check-list {
  max-width: none;
}

.split-partner-editorial .section-copy h2 {
  margin-bottom: 0.25rem;
  line-height: 1.08;
}

.split-partner-editorial .section-copy > p:not(.eyebrow) {
  margin-bottom: 0;
  line-height: 1.8;
}

.split-partner-editorial .section-copy .check-list {
  margin: 0;
}

.split-partner-editorial .section-copy .check-list li {
  margin-bottom: 0.8rem;
  line-height: 1.75;
}

.split-partner-editorial .section-copy .mini-cta {
  margin-top: 0.2rem;
}

.visual-card.soft-frame {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 2rem;
}

.visual-card.soft-frame img {
  width: min(280px, 100%);
  aspect-ratio: auto;
  object-fit: contain;
}

.band,
.page-intro-card,
.cta-panel {
  background: var(--accent);
  color: #fff;
}

.band .service-card {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.band .service-card p,
.band .lead,
.band .section-head p,
.cta-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.page-intro-card {
  width: 100%;
  background: linear-gradient(rgba(var(--accent-rgb), 0.88), rgba(var(--accent-rgb), 0.88)), var(--page-image) center/cover no-repeat;
}

.page-intro-grid {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4rem) 1rem;
}

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

.page-intro-grid-single > :first-child {
  max-width: 760px;
}

.products-intro {
  padding-top: 2rem;
  padding-bottom: clamp(2.6rem, 5vw, 3.6rem);
}

.products-intro .page-intro-grid {
  padding: clamp(3rem, 5vw, 3.75rem) 1rem;
}

.products-intro-head {
  max-width: 820px;
  display: grid;
  gap: 0.95rem;
}

.products-intro-head .eyebrow {
  margin-bottom: 0;
}

.products-intro-head h1 {
  max-width: min(16.5ch, 100%);
  margin: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.products-intro-head p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.76;
}

.products-intro + .section {
  padding-top: clamp(2.8rem, 5vw, 3.6rem);
}

.about-story {
  display: grid;
  gap: clamp(1.8rem, 4vw, 2.8rem);
}

.about-story-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
   
}

.about-story-intro,
.about-story-copy {
  display: grid;
  gap: 1rem;
}

.about-story .eyebrow,
.about-story .lead,
.about-story-copy h2,
.about-story-copy p,
.about-story-point h3,
.about-story-point p {
  margin: 0;
}

.about-story .lead {
  max-width: 28ch;
  color: var(--text);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.about-story-copy {
  max-width: 620px;
}

.about-story-copy h2 {
  max-width: 14ch;
  line-height: 1.04;
}

.about-story-copy p {
  max-width: 60ch;
  line-height: 1.78;
}

.about-story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-story-point {
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}

.about-story-point h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.25;
}

.about-story-point p {
  color: var(--muted);
  line-height: 1.72;
}

.assistenza-editorial {
  padding-top: clamp(2.25rem, 4vw, 3rem);
  padding-bottom: 1.5rem;
}

.assistenza-editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
  padding-bottom: clamp(1.75rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line);
}

.assistenza-editorial .section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 0;
}

.assistenza-editorial .section-head .eyebrow {
  margin: 0;
}

.assistenza-editorial .section-head h2 {
  margin: 0;
  max-width: 14ch;
  line-height: 1.08;
}

.assistenza-editorial-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 62ch;
  padding-top: 0.35rem;
}

.assistenza-editorial-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.assistenza-editorial + .section {
  padding-top: 1.75rem;
}

.sviluppo-editorial {
  padding-top: clamp(2.25rem, 4vw, 3rem);
  padding-bottom: 1.5rem;
}

.sviluppo-editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

.sviluppo-editorial .section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 0;
}

.sviluppo-editorial .section-head .eyebrow {
  margin: 0;
}

.sviluppo-editorial .section-head h2 {
  margin: 0;
  max-width: 15ch;
  line-height: 1.08;
}

.sviluppo-editorial-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 62ch;
  padding-top: 0.35rem;
}

.sviluppo-editorial-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.sviluppo-editorial-list {
  margin: 0.15rem 0 0;
  padding-top: 0.65rem;
  
}

.sviluppo-editorial-list li {
  line-height: 1.75;
}

.sviluppo-editorial + .section {
  padding-top: 1.75rem;
}

.contact-map-section {
  align-items: start;
}

.contact-map-section .section-copy {
  max-width: 680px;
  display: grid;
  gap: 1rem;
}

.contact-map-section .section-copy h2,
.contact-map-section .section-copy p,
.contact-map-section .section-copy .check-list {
  margin: 0;
  max-width: none;
}

.contact-map-section .section-copy h2 {
  max-width: 15ch;
  line-height: 1.08;
}

.contact-map-section .section-copy > p:not(.eyebrow) {
  max-width: 58ch;
  line-height: 1.75;
}

.contact-map-section .section-copy .check-list {
  margin-top: 0.25rem;
}

.contact-map-section .section-copy .check-list li {
  line-height: 1.7;
}

.map-card {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  min-height: 420px;
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.contact-form-section {
  padding-top: 0.5rem;
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-form-copy {
  display: grid;
  gap: 1rem;
}

.contact-form-copy h2,
.contact-form-copy p,
.contact-form-copy .check-list {
  margin: 0;
}

.contact-form-copy h2 {
  max-width: 14ch;
}

.contact-form-copy > p:not(.eyebrow) {
  max-width: 54ch;
  line-height: 1.75;
}

.contact-form-card {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: #fff;
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

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

.field span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(63, 70, 89, 0.72);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(172, 26, 47, 0.35);
  box-shadow: 0 0 0 3px rgba(172, 26, 47, 0.08);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.consent-check input {
  margin-top: 0.2rem;
}

.contact-form-actions {
  display: grid;
  gap: 0.7rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.quote-highlight {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.quote-highlight .quote-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border: 0;
  border-top: 1px solid rgba(32, 32, 32, 0.08);
  border-bottom: 1px solid rgba(32, 32, 32, 0.08);
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.quote-highlight .quote-card .eyebrow {
  margin-bottom: 0.85rem;
  color: var(--accent);
}

.quote-highlight .quote-card p:last-child {
  max-width: 30ch;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

body[data-page="chisiamo"] .sir-section {
  margin-top: 2rem;
}

.cta-panel {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 2rem;
  align-items: center;
  padding:
    clamp(2rem, 4vw, 2.75rem)
    max(1rem, calc((100vw - var(--content)) / 2 + 1rem));
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.kpi {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.kpi span {
  color: rgba(255, 255, 255, 0.8);
}

.table-list {
  display: grid;
  gap: 0.65rem;
}

.table-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.table-row strong,
.contact-card strong,
.legal-card strong {
  color: var(--text);
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.legal-sidebar,
.legal-summary {
  position: sticky;
  top: 116px;
}

.legal-summary {
  display: grid;
  gap: 1rem;
}

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

.legal-summary .mini-cta {
  font-weight: 700;
}

.legal-toc {
  display: grid;
  gap: 0.4rem;
}

.legal-toc-title {
  margin: 0 0 0.3rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.legal-toc a:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
  background: #fff8f8;
}

.legal-document > :first-child {
  margin-top: 0;
}

.legal-document h2,
.legal-document h3 {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.legal-document h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.legal-document h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: 0;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  line-height: 1.85;
}

.legal-document a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-document ol,
.legal-document ul {
  padding-left: 1.2rem;
}

.legal-document li + li {
  margin-top: 0.55rem;
}

.legal-document .legal-lead {
  color: var(--text);
  font-size: 1.05rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
}

.note-list,
.check-list,
.timeline,
.legal-list {
  padding-left: 1.2rem;
}

.note-list li,
.check-list li,
.timeline li,
.legal-list li {
  margin-bottom: 0.6rem;
}

.mini-cta::after {
  content: " →";
}

.sir-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
  background: transparent;
}

.sir-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(360px, 1.12fr);
}

.sir-visual {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 2.5rem 1rem;
  background: #f3f000;
}

.sir-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.sir-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 12px;
}

.sir-mark-cloud {
  color: #111;
  font-size: 2.2rem;
  line-height: 1;
}

.sir-wordmark {
  display: grid;
  gap: 0.1rem;
  color: #111;
}

.sir-word {
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.sir-sub {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.sir-copy {
  display: grid;
  align-content: center;
  gap: 1.8rem;
  padding: 2.75rem clamp(2rem, 5vw, 4rem);
}

.sir-intro {
  max-width: 22ch;
  margin: 0;
  color: #3f4659;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.sir-products {
  max-width: 28ch;
  margin: 0;
  color: var(--accent);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
  font-weight: 700;
  text-transform: uppercase;
}

.sir-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sir-link::after {
  content: "›";
  font-size: 1.4rem;
  line-height: 1;
}

.site-footer-wrap {
  width: 100%;
  margin-top: 0;
  background: #23262f;
  color: #f4f5f7;
}

.site-footer,
.site-footer-meta {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 1.75rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(244, 245, 247, 0.78);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 245, 247, 0.82);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-social-link svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.footer-social-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer-section {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.footer-title {
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(244, 245, 247, 0.82);
}

.footer-links a:hover,
.utility-mail:hover {
  color: var(--accent);
}

.site-footer-meta {
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
  background: #17191f;
}

.footer-note {
  margin: 0;
  width: min(100%, var(--content));
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media (max-width: 980px) {
  .utility-inner {
    min-height: 40px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .utility-mail {
    font-size: 0.76rem;
  }

  .site-header-inner {
    grid-template-columns: auto auto;
    gap: 0.85rem;
    min-height: 76px;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .brand img {
    width: 150px;
  }

  .site-nav,
  .contact-chip {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .contact-chip {
    display: block;
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-nav {
    margin-top: 0.35rem;
    padding: 0.35rem 0 0;
    border-top: 1px solid var(--line);
  }

  .site-nav > a,
  .nav-trigger {
    display: block;
    width: 100%;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav-group {
    display: block;
  }

  .nav-panel {
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-group.is-open .nav-panel {
    display: block;
  }

  .nav-panel a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--soft);
  }

  .site-header.is-open .contact-chip {
    margin-top: 0.9rem;
    width: 100%;
  }

  .hero-grid,
  .page-intro-grid,
  .split,
  .assistenza-editorial-head,
  .sviluppo-editorial-head,
  .about-story-head,
  .cta-panel,
  .solutions-browser,
  .legal-layout,
  .sir-shell,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .legal-sidebar,
  .legal-summary {
    position: static;
    top: auto;
  }

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

@media (max-width: 760px) {
  .utility-inner {
    align-items: flex-start;
    min-height: auto;
  }

  .utility-mail {
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    word-break: break-word;
  }

  .utility-socials {
    width: 100%;
    margin-left: 0;
    padding-left: 1.55rem;
  }

  .site-header-inner {
    min-height: 70px;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .metric-strip,
  .about-story-points,
  .grid-3,
  .service-grid,
  .contact-grid,
  .editorial-grid,
  .news-archive,
  .legal-grid,
  .kpi-row {
    grid-template-columns: 1fr;
  }

  .stat-card-feature {
    grid-row: auto;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact-form-shell,
  .field-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .hero-actions .btn,
  .cta-panel .btn,
  .news-actions .btn {
    width: 100%;
  }

  .section.band,
  .cta-panel,
  .sir-copy {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-form-card {
    padding: 1.2rem;
  }


  .sir-visual {
    min-height: 220px;
  }


  .product-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 150px;
  }
}
