/* ═══════════════════════════════════════════
   RM STUDIO — style.css
   IBM Plex Mono · Dark & Technical
   ═══════════════════════════════════════════ */

   @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');


   /* ─── RESET ─────────────────────────────── */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   html { scroll-behavior: smooth; }


   /* ─── TOKENS ─────────────────────────────── */
   :root {
     --bg:        #0D0F11;
     --surface:   #141618;
     --surface2:  #1A1D20;
     --surface3:  #212428;
     --border:    rgba(255,255,255,0.07);
     --border2:   rgba(255,255,255,0.13);
     --border3:   rgba(255,255,255,0.22);
     --accent:    #C1FF72;
     --accent-dim:#8BBF4A;
     --blue:      #174EE2;
     --text:      #E8EAE6;
     --muted:     #6B7280;
     --muted2:    #9CA3AF;
     --font:      'IBM Plex Mono', monospace;
     --nav-h:     72px;
     --ease:      cubic-bezier(0.16, 1, 0.3, 1);
   }


   /* ─── BASE ───────────────────────────────── */
   body {
     background: var(--bg);
     color: var(--text);
     font-family: var(--font);
     font-size: 14px;
     line-height: 1.6;
     -webkit-font-smoothing: antialiased;
     cursor: none;
   }

   a { color: inherit; text-decoration: none; }
   img { display: block; max-width: 100%; }
   button { cursor: none; font-family: var(--font); }


   /* ─── CUSTOM CURSOR ──────────────────────── */
   #cursor {
     position: fixed;
     width: 10px; height: 10px;
     background: var(--accent);
     border-radius: 50%;
     pointer-events: none;
     z-index: 9999;
     transform: translate(-50%, -50%);
     transition: width 0.2s var(--ease), height 0.2s var(--ease);
     mix-blend-mode: difference;
   }
   #cursor.expand { width: 40px; height: 40px; }


   /* ─── PAGE TRANSITION ────────────────────── */
   .page-transition {
     position: fixed;
     inset: 0;
     background: var(--accent);
     transform: scaleY(0);
     transform-origin: bottom;
     z-index: 9998;
     pointer-events: none;
   }


   /* ═══════════════════════════════════════════
      NAV
      ═══════════════════════════════════════════ */
   nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 56px;
     height: var(--nav-h);
     border-bottom: 1px solid var(--border);
     position: sticky;
     top: 0;
     background: rgba(13,15,17,0.96);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     z-index: 200;
   }

   /* logo */
   .logo {
     font-size: 16px;
     font-weight: 700;
     letter-spacing: 0.16em;
     color: var(--text);
     display: flex;
     align-items: center;
   }
   .logo .dot { color: var(--accent); }

   /* nav links */
   .nav-links {
     display: flex;
     gap: 40px;
     list-style: none;
   }
   .nav-links a {
     color: var(--muted2);
     font-size: 12px;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     transition: color 0.2s;
     position: relative;
     padding-bottom: 3px;
   }
   .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -2px; left: 0;
     width: 0; height: 2px;
     background: var(--accent);
     transition: width 0.3s var(--ease);
   }
   .nav-links a:hover,
   .nav-links a.active { color: var(--text); }
   .nav-links a.active::after,
   .nav-links a:hover::after { width: 100%; }

   /* cta button */
   .nav-cta {
     background: var(--accent);
     color: #0D0F11;
     border: none;
     padding: 12px 26px;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: opacity 0.2s, gap 0.2s;
   }
   .nav-cta:hover { opacity: 0.85; gap: 13px; }

   /* hamburger */
   .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     padding: 6px;
   }
   .hamburger span {
     display: block;
     width: 24px; height: 1.5px;
     background: var(--text);
     transition: transform 0.3s, opacity 0.3s;
   }
   .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
   .hamburger.open span:nth-child(2) { opacity: 0; }
   .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

   /* mobile menu — fixed sotto la nav, non dipende dallo scroll */
   .mobile-menu {
     display: none;
     flex-direction: column;
     background: var(--surface);
     border-bottom: 1px solid var(--border);
     padding: 28px 56px;
     gap: 22px;
     position: fixed;
     top: var(--nav-h);
     left: 0; right: 0;
     z-index: 199;
     box-shadow: 0 8px 32px rgba(0,0,0,0.4);
   }
   .mobile-menu a {
     font-size: 13px;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--muted2);
     transition: color 0.2s;
     display: flex;
     align-items: center;
     gap: 10px;
   }
   .mobile-menu a::before {
     content: '';
     width: 0; height: 2px;
     background: var(--accent);
     transition: width 0.3s var(--ease);
     flex-shrink: 0;
   }
   .mobile-menu a:hover { color: var(--text); }
   .mobile-menu a.active {
     color: var(--accent);
   }
   .mobile-menu a.active::before {
     width: 16px;
   }


   /* ═══════════════════════════════════════════
      SITEMAP
      ═══════════════════════════════════════════ */
   .sitemap {
     display: flex;
     align-items: center;
     position: relative;
     padding: 48px 56px 32px;
     border-top: 1px solid var(--border);
     min-height: 110px;
   }
   .sitemap-brand {
     flex-shrink: 0;
   }
   .sitemap-logo {
     font-size: 16px;
     font-weight: 700;
     letter-spacing: 0.16em;
     color: var(--text);
   }
   .sitemap-logo .dot { color: var(--accent); }
   .sitemap-tagline {
     font-size: 11px;
     color: var(--muted);
     line-height: 1.75;
     margin-top: 10px;
     letter-spacing: 0.02em;
   }
   .sitemap-center {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 64px;
     align-items: flex-start;
   }
   .sitemap-col {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 14px;
   }
   .sitemap-col-label {
     font-size: 9px;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--accent);
   }
   .sitemap-row-links {
     display: flex;
     align-items: center;
   }
   .sitemap-row-links a {
     font-size: 12px;
     color: var(--muted2);
     letter-spacing: 0.04em;
     transition: color 0.2s;
     padding: 0 16px;
   }
   .sitemap-row-links a:first-child { padding-left: 0; }
   .sitemap-row-links a:last-child  { padding-right: 0; }
   .sitemap-row-links a + a {
     border-left: 1px solid var(--border2);
   }
   .sitemap-row-links a:hover { color: var(--text); }

   @media (max-width: 900px) {
     .sitemap { flex-direction: column; align-items: flex-start; gap: 32px; padding: 40px 24px; min-height: unset; }
     .sitemap-center { position: static; transform: none; flex-direction: column; gap: 24px; }
     .sitemap-col { align-items: flex-start; }
   }


   /* ═══════════════════════════════════════════
      FOOTER
      ═══════════════════════════════════════════ */
   footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
     padding: 16px 56px 28px;
   }
   .footer-logo {
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 0.14em;
     color: var(--muted);
   }
   .footer-logo .dot { color: var(--accent); }
   .footer-copy {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     font-size: 11px;
     color: var(--muted);
     letter-spacing: 0.06em;
     white-space: nowrap;
   }
   .footer-links { display: flex; gap: 28px; }
   .footer-links a {
     font-size: 11px;
     color: var(--muted);
     letter-spacing: 0.06em;
     transition: color 0.2s;
   }
   .footer-links a:hover { color: var(--text); }


   /* ═══════════════════════════════════════════
      BUTTONS
      ═══════════════════════════════════════════ */
   .btn {
     display: block;
     text-align: center;
     align-items: center;
     gap: 10px;
     font-size: 15px;
     font-weight: 700;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     border: none;
     transition: all 0.2s var(--ease);
     cursor: none;
   }
   .btn-accent {
     background: var(--accent);
     color: #0D0F11;
     padding: 16px 32px;
   }
   .btn-accent:hover { opacity: 0.88; gap: 14px; }
   .btn-outline {
     background: transparent;
     color: var(--text);
     padding: 15px 30px;
     border: 1px solid var(--border2);
   }
   .btn-outline:hover { border-color: var(--border3); background: var(--surface); gap: 14px; }
   .btn-ghost {
     background: none;
     border: none;
     color: var(--muted2);
     padding: 0;
     font-size: 12px;
     letter-spacing: 0.06em;
     text-transform: none;
     font-weight: 400;
     transition: color 0.2s;
   }
   .btn-ghost:hover { color: var(--text); }


   /* ═══════════════════════════════════════════
      SECTION CHROME
      ═══════════════════════════════════════════ */
   .section {
     padding: 88px 56px;
     border-bottom: 1px solid var(--border);
   }
   .section-header {
     display: flex;
     align-items: baseline;
     gap: 20px;
     margin-bottom: 56px;
   }
   .section-num {
     font-size: 10px;
     color: var(--muted);
     letter-spacing: 0.16em;
   }
   .section-title {
     font-size: 10px;
     letter-spacing: 0.18em;
     color: var(--muted2);
     text-transform: uppercase;
   }


   /* ═══════════════════════════════════════════
      CLIENTS LOGO TICKER
      ═══════════════════════════════════════════ */
   .clients-ticker {
     overflow: hidden;
     position: relative;
   }
   .clients-ticker::before,
   .clients-ticker::after {
     content: '';
     position: absolute;
     top: 0; bottom: 0;
     width: 100px;
     z-index: 2;
     pointer-events: none;
   }
   .clients-ticker::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
   .clients-ticker::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

   /*
     Il ticker usa due copie identiche del gruppo loghi.
     L'animazione trasla di -50% (= larghezza di una copia).
     Il loop è infinito e senza interruzioni.
   */
   .ticker-track {
     display: flex;
     align-items: center;
     width: max-content;
     animation: tickerScroll 35s linear infinite;
   }
   .ticker-track:hover { animation-play-state: paused; }

   @keyframes tickerScroll {
     0%   { transform: translateX(0); }
     100% { transform: translateX(-50%); }
   }

   /* ogni logo placeholder */
   .ticker-logo {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 260px;
     padding: 0 48px;
     border-right: 1px solid var(--border);
     flex-shrink: 0;
     transition: opacity 0.3s;
     opacity: 0.55;
     text-decoration: none;
     color: inherit;
   }
   .ticker-logo:hover { opacity: 1; }
   .ticker-logo svg { display: block; }
   .ticker-logo img {
     height: 100%;
     width: auto;
     object-fit: contain;
     display: block;
     filter: grayscale(1) brightness(1.8);
     transition: filter 0.3s;
   }
   .ticker-logo:hover img {
     filter: grayscale(0) brightness(1);
   }


   /* ═══════════════════════════════════════════
      MARQUEE SERVIZI
      Striscia animata sotto l'hero
      ═══════════════════════════════════════════ */
   .marquee-strip {
     overflow: hidden;
     border-bottom: 1px solid var(--border);
     background: var(--surface);
   }
   .marquee-strip-inner {
     display: flex;
     width: max-content;
     animation: marqueeScroll 22s linear infinite;
   }
   .marquee-strip:hover .marquee-strip-inner { animation-play-state: paused; }

   @keyframes marqueeScroll {
     from { transform: translateX(0); }
     to   { transform: translateX(-50%); }
   }

   .marquee-strip-item {
     display: flex;
     align-items: center;
     gap: 16px;
     padding: 14px 36px;
     border-right: 1px solid var(--border);
     font-size: 10px;
     font-weight: 600;
     letter-spacing: 0.2em;
     color: var(--muted);
     text-transform: uppercase;
     white-space: nowrap;
     transition: color 0.2s;
   }
   .marquee-strip-item:hover { color: var(--accent); }

   .marquee-dot {
     width: 5px; height: 5px;
     background: var(--accent);
     border-radius: 50%;
     flex-shrink: 0;
   }


   /* ═══════════════════════════════════════════
      PROCESS — TIMELINE + STICKY PANEL
      ═══════════════════════════════════════════ */

   /* layout due colonne */
   .process-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: stretch;  /* pannello destro alto quanto il sinistro */
   }

   .process-left {
     display: flex;
     flex-direction: column;
   }

   /* timeline */
   .process-timeline {
     display: grid;
     grid-template-columns: 32px 1fr;
     gap: 0 24px;
     flex: 1;
   }
   .process-timeline-line {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding-top: 24px;
   }
   .ptl-line {
     width: 1px;
     flex: 1;
     background: linear-gradient(to bottom, var(--accent), transparent);
     opacity: 0.5;
   }
   .process-timeline-steps {
     display: flex;
     flex-direction: column;
     gap: 16px;
   }

   /* box singolo step */
   .process-box {
     border: 1px solid var(--border2);
     background: var(--surface);
     padding: 28px 28px;
     position: relative;
     cursor: pointer;
     /* entrata da sinistra — attivata via JS con .box-visible */
     opacity: 0;
     transform: translateX(-20px);
     transition: opacity 0.55s var(--ease), transform 0.55s var(--ease),
                 border-color 0.3s, background 0.3s;
   }
   .process-box.box-visible {
     opacity: 1;
     transform: none;
   }
   .process-box:hover {
     border-color: var(--accent);
     background: var(--surface2);
   }
   .process-box.active-step {
     border-color: var(--accent);
     background: var(--surface2);
   }

   /* pallino sulla linea */
   .process-box::before {
     content: '';
     position: absolute;
     left: -32px;
     top: 26px;
     width: 10px; height: 10px;
     border-radius: 50%;
     background: var(--bg);
     border: 2px solid var(--muted);
     transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
   }
   .process-box:hover::before,
   .process-box.active-step::before {
     background: var(--accent);
     border-color: var(--accent);
     box-shadow: 0 0 0 4px rgba(193,255,114,0.18);
   }

   .process-box-tag {
     font-size: 9px;
     font-weight: 700;
     letter-spacing: 0.22em;
     color: var(--accent);
     text-transform: uppercase;
     margin-bottom: 8px;
   }
   .process-box-title {
     font-size: 16px;
     font-weight: 700;
     color: var(--text);
     letter-spacing: -0.01em;
     line-height: 1.3;
     margin-bottom: 10px;
   }
   .process-box-desc {
     font-size: 12px;
     color: var(--muted2);
     line-height: 1.85;
   }

   /* ── PANNELLO DESTRO STICKY ── */
   .process-right {
     position: relative;
     display: flex;
     flex-direction: column;
   }
   .process-sticky {
     position: sticky;
     top: calc(var(--nav-h) + 24px);
     border: 1px solid var(--border2);
     background: var(--surface);
     padding: 36px 32px 28px;
     display: flex;
     flex-direction: column;
     gap: 0;
     overflow: hidden;
     height: 100%;
   }

   /* immagine tematica di sfondo */
   .process-sticky-img {
     position: absolute;
     inset: 0;
     pointer-events: none;
   }
   .psi-slide {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.6s var(--ease);
   }
   .psi-slide.active { opacity: 1; }
   .psi-slide img {
     width: 100%; height: 100%;
     object-fit: cover;
     filter: brightness(0.35) saturate(0.4);
   }

   /* vignetta per leggibilità testo */
   .process-sticky::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(
       to bottom,
       rgba(20,22,24,0.65) 0%,
       rgba(20,22,24,0.45) 50%,
       rgba(20,22,24,0.75) 100%
     );
     pointer-events: none;
     z-index: 1;
   }

   /* tutti gli elementi testuali sopra la vignetta */
   .process-sticky-num,
   .process-sticky-label,
   .process-sticky-phrase,
   .process-sticky-bar,
   .process-sticky-steps { position: relative; z-index: 2; }

   /* numero grande */
   .process-sticky-num {
     font-size: 72px;
     font-weight: 700;
     letter-spacing: -0.06em;
     line-height: 1;
     color: var(--accent);
     opacity: 0.18;
     margin-bottom: -8px;
     transition: opacity 0.4s;
   }
   .process-sticky:hover .process-sticky-num { opacity: 0.28; }

   .process-sticky-label {
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--accent);
     margin-bottom: 12px;
     transition: opacity 0.3s;
   }

   .process-sticky-phrase {
     font-size: 20px;
     font-weight: 700;
     color: var(--text);
     letter-spacing: -0.02em;
     line-height: 1.25;
     margin-bottom: 28px;
     transition: opacity 0.3s;
   }

   .process-sticky-bar {
     height: 2px;
     background: var(--border2);
     margin-bottom: 20px;
     overflow: hidden;
   }
   .process-sticky-bar-fill {
     height: 100%;
     background: var(--accent);
     width: 33.33%;
     transition: width 0.5s var(--ease);
   }

   .process-sticky-steps {
     display: flex;
     gap: 10px;
   }
   .pss-dot {
     width: 8px; height: 8px;
     border-radius: 50%;
     border: 1.5px solid var(--border2);
     background: transparent;
     transition: background 0.3s, border-color 0.3s;
     cursor: pointer;
   }
   .pss-dot.active {
     background: var(--accent);
     border-color: var(--accent);
   }

   /* autoplay indicator — bordo animato che si svuota */
   .process-sticky-timer {
     position: absolute;
     bottom: 0; left: 0;
     height: 2px;
     background: rgba(193,255,114,0.35);
     z-index: 3;
     width: 100%;
     transform-origin: left;
   }

   @media (max-width: 1024px) {
     .process-layout { grid-template-columns: 1fr; gap: 40px; }
     .process-sticky { position: relative; top: auto; }
     .process-sticky-num { font-size: 80px; }
     .process-sticky-phrase { font-size: 20px; }
   }


   .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1px;
     background: var(--border);
     border: 1px solid var(--border);
   }
   .service-card {
     background: var(--bg);
     padding: 32px 28px;
     transition: background 0.3s;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     gap: 16px;
   }
   .service-card::after {
     content: '';
     position: absolute;
     bottom: 0; left: 0;
     width: 0; height: 2px;
     background: var(--accent);
     transition: width 0.4s var(--ease);
   }
   .service-card:hover { background: var(--surface2); }
   .service-card:hover::after { width: 100%; }
   .service-icon {
     width: 36px; height: 36px;
     border: 1px solid var(--border2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     color: var(--accent);
     flex-shrink: 0;
     transition: border-color 0.3s, background 0.3s;
   }
   .service-card:hover .service-icon {
     border-color: var(--accent);
     background: rgba(193,255,114,0.06);
   }
   .service-name {
     font-size: 13px;
     font-weight: 700;
     color: var(--text);
     letter-spacing: 0.01em;
     line-height: 1.3;
   }
   .service-desc {
     font-size: 11px;
     color: var(--muted);
     line-height: 1.85;
   }


   /* ═══════════════════════════════════════════
      CONTACT FORM
      ═══════════════════════════════════════════ */
   .contact-section {
     display: grid;
     grid-template-columns: 1fr 1fr;
     border-bottom: 1px solid var(--border);
   }
   .contact-left {
     padding: 12px 64px 88px 56px;
     border-right: 1px solid var(--border);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
   }
   .contact-left h2 {
     display: block;
     text-align: center;
     font-size: clamp(75px, 3vw, 44px);
     font-weight: 700;
     color: var(--text);
     line-height: 1.1;
     margin-bottom: 20px;
     letter-spacing: -0.025em;
     overflow: visible;
   }
   .contact-left h2 em {
    display: block;
    text-align: center;
    padding-bottom: 12px;
    background: linear-gradient(135deg, #C1FF72 0%, #A8FF3E 30%, #72FFD4 62%, #C1FF72 100%);
    background-size: 250% 250%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
  }
   .contact-left p {
     display: block;
     text-align: center;
     font-size: 15px;
     color: var(--muted2);
     line-height: 1.9;
     margin-bottom: 44px;
     max-width: 380px;
   }
   .contact-info { display: flex; flex-direction: column; gap: 16px; align-self: flex-start; padding-top: 50px; }
   .contact-item { display: flex; gap: 16px; align-items: center; }
   .contact-item-label {
     font-size: 10px;
     letter-spacing: 0.16em;
     color: var(--muted);
     width: 64px;
     flex-shrink: 0;
     text-transform: uppercase;
   }
   .contact-item-val { font-size: 12px; color: var(--text); }

   .contact-right {
     padding: 88px 56px 88px 64px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
   }
   .form-group {
     border-bottom: 1px solid var(--border);
     padding: 22px 0;
     transition: border-color 0.2s;
   }
   .form-group:focus-within { border-bottom-color: var(--accent); }
   .form-group label {
     display: block;
     font-size: 10px;
     letter-spacing: 0.18em;
     color: var(--muted);
     text-transform: uppercase;
     margin-bottom: 10px;
   }
   .form-group input,
   .form-group textarea {
     width: 100%;
     background: transparent;
     border: none;
     outline: none;
     font-family: var(--font);
     font-size: 14px;
     color: var(--text);
     resize: none;
   }
   .form-group input::placeholder,
   .form-group textarea::placeholder { color: var(--muted); }
   .form-submit { margin-top: 40px; display: flex; justify-content: flex-end; }


   /* ═══════════════════════════════════════════
      SCROLL REVEAL
      ═══════════════════════════════════════════ */
   .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
   }
   .reveal.visible { opacity: 1; transform: none; }


   /* ═══════════════════════════════════════════
      RESPONSIVE
      ═══════════════════════════════════════════ */
   @media (max-width: 1024px) {
     nav, footer { padding-left: 32px; padding-right: 32px; }
     .section { padding: 64px 32px; }
     .services-grid { grid-template-columns: 1fr 1fr; }
     .contact-section { grid-template-columns: 1fr; }
     .contact-left { padding: 64px 32px; border-right: none; border-bottom: 1px solid var(--border); }
     .contact-right { padding: 48px 32px 64px; }
   }

   @media (max-width: 768px) {
     body { cursor: auto; }
     button { cursor: pointer; }
     #cursor { display: none; }
     .nav-links, .nav-cta { display: none; }
     .hamburger { display: flex; }
     .mobile-menu.open { display: flex; }
     nav, footer { padding-left: 24px; padding-right: 24px; }
     .section { padding: 52px 24px; }
     .services-grid { grid-template-columns: 1fr 1fr; }
     footer { flex-direction: column; gap: 16px; text-align: center; }
     /* servizi: nasconde le descrizioni su mobile */
.service-desc { display: none; }

/* servizi: 2 colonne su mobile */
.services-grid { grid-template-columns: 1fr 1fr; }

/* service-card compatta su mobile */
.service-card {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-icon {
  margin-bottom: 0;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
   }
