:root {
    --dark: #111820;
    --dark-mid: #182130;
    --dark-light: #1f2f44;
    --blue: #1e72b8;
    --blue-light: #3d96e0;
    --blue-pale: #c8dff2;
    --blue-glow: rgba(30,114,184,0.15);
    --white: #ffffff;
    --off-white: #f2f4f7;
    --text-light: #7a90aa;
    --border: rgba(30,114,184,0.22);
    --border-light: rgba(30,114,184,0.12);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.8rem 4rem;
    background: rgba(17,24,32,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo img { height: 44px; width: auto; filter: brightness(1.1); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-light);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blue-light); }
  .nav-cta {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--white);
    background: var(--blue); padding: 0.65rem 1.6rem;
    text-decoration: none; transition: background 0.2s;
    border: none; cursor: pointer;
  }
  .nav-cta:hover { background: var(--blue-light); }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 0 4rem;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(135deg, #0c1520 0%, var(--dark-mid) 55%, #0e1822 100%);
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 55% 55% at 72% 50%, var(--blue-glow) 0%, transparent 70%),
      radial-gradient(ellipse 35% 70% at 92% 95%, rgba(24,33,48,0.7) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(30,114,184,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30,114,184,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-left { position: relative; z-index: 1; padding-top: 5rem; }
  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--blue-light);
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2rem; opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--blue-light); }
  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    font-weight: 700; line-height: 0.95;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 1rem;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-title em {
    font-style: normal; display: block;
    color: transparent; -webkit-text-stroke: 1px var(--blue-light);
  }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-style: italic; font-weight: 300;
    color: var(--blue-pale); letter-spacing: 0.03em;
    margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
  }
  .hero-desc {
    font-size: 0.95rem; line-height: 1.8; color: var(--text-light);
    max-width: 480px; margin-bottom: 3rem;
    opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
  }
  .hero-actions {
    display: flex; gap: 1.2rem; align-items: center;
    opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
  }
  .btn-primary {
    display: inline-block; padding: 1rem 2.5rem;
    background: var(--blue); color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.25s; position: relative; overflow: hidden; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--blue-light); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.7rem;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-light); text-decoration: none;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost svg { transition: transform 0.2s; }
  .btn-ghost:hover svg { transform: translateX(4px); }
  .hero-right {
    position: relative; z-index: 1; padding-top: 5rem;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--border); border: 1px solid var(--border);
    opacity: 0; animation: fadeIn 1s 1.1s forwards;
  }
  .stat-box {
    background: rgba(17,24,32,0.9); padding: 2.5rem 2rem;
    position: relative; overflow: hidden; transition: background 0.3s;
  }
  .stat-box:hover { background: rgba(31,47,68,0.95); }
  .stat-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
    background: var(--blue); transition: height 0.4s;
  }
  .stat-box:hover::before { height: 100%; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem; font-weight: 700; color: var(--blue-light); line-height: 1; margin-bottom: 0.4rem;
  }
  .stat-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }
  .stat-desc { font-size: 0.85rem; color: var(--white); margin-top: 0.5rem; line-height: 1.5; }
  .scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0; animation: fadeIn 1s 1.5s forwards;
  }
  .scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--blue), transparent); animation: scrollPulse 2s infinite; }

  /* SECTION BASE */
  section { padding: 7rem 4rem; }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--blue-light);
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--blue-light); }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700; text-transform: uppercase; line-height: 1;
    color: var(--white); margin-bottom: 1.5rem;
  }
  .section-title em { font-style: normal; color: var(--blue-light); }

  /* CHI SIAMO */
  #chi-siamo {
    background: var(--off-white); color: var(--dark);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  #chi-siamo .section-label { color: var(--blue); }
  #chi-siamo .section-title { color: var(--dark); }
  #chi-siamo .section-title em { color: var(--blue); }
  .about-text p { font-size: 1rem; line-height: 1.9; color: #3a4a5e; margin-bottom: 1.5rem; }
  .about-text .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-style: italic; font-weight: 400;
    color: var(--dark); border-left: 3px solid var(--blue);
    padding-left: 1.5rem; margin: 2rem 0; line-height: 1.6;
  }
  .about-values { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
  .value-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--dark);
    border: 1.5px solid var(--blue); padding: 0.5rem 1.2rem; transition: all 0.2s;
  }
  .value-tag:hover { background: var(--blue); color: var(--white); }
  .about-visual {
    position: relative; background: var(--dark); padding: 3rem;
    min-height: 380px; display: flex; align-items: center; justify-content: center;
  }
  .about-visual::before {
    content: ''; position: absolute; top: -14px; right: -14px; bottom: 14px; left: 14px;
    border: 1px solid var(--blue); z-index: 0;
  }
  .about-visual-inner { position: relative; z-index: 1; text-align: center; }
  .about-logo-img { width: 200px; filter: brightness(1.15); margin-bottom: 1.5rem; }
  .about-divider { width: 60px; height: 1px; background: var(--blue); margin: 0 auto 1.5rem; }
  .about-since { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--text-light); }

  /* SERVIZI */
  #servizi { background: var(--dark-mid); position: relative; overflow: hidden; }
  #servizi::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
    background: radial-gradient(ellipse at right, rgba(30,114,184,0.05) 0%, transparent 70%);
  }
  .services-header { max-width: 600px; margin-bottom: 4rem; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
  .service-card {
    background: var(--dark-mid); padding: 2.5rem 2rem;
    position: relative; overflow: hidden; transition: background 0.3s;
  }
  .service-card:hover { background: var(--dark-light); }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon {
    width: 48px; height: 48px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; transition: border-color 0.3s, background 0.3s;
  }
  .service-card:hover .service-icon { border-color: var(--blue); background: rgba(30,114,184,0.1); }
  .service-icon svg { width: 22px; height: 22px; stroke: var(--blue-light); }
  .service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--white); margin-bottom: 1rem;
  }
  .service-desc { font-size: 0.85rem; line-height: 1.7; color: var(--text-light); margin-bottom: 1.5rem; }
  .service-list { list-style: none; margin-top: 1rem; }
  .service-list li {
    font-size: 0.8rem; color: var(--text-light);
    padding: 0.3rem 0; border-bottom: 1px solid rgba(122,144,170,0.1);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .service-list li::before { content: ''; width: 4px; height: 4px; background: var(--blue-light); border-radius: 50%; flex-shrink: 0; }

  /* SETTORI */
  #settori { background: var(--dark); }
  .settori-intro { max-width: 600px; margin-bottom: 4rem; }
  .settori-intro p { font-size: 1rem; line-height: 1.8; color: var(--text-light); }
  .settori-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .settore-card {
    border: 1px solid var(--border-light); padding: 2rem 1.8rem;
    position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s;
  }
  .settore-card:hover { border-color: var(--blue); transform: translateY(-4px); }
  .settore-num {
    font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 700;
    color: rgba(30,114,184,0.1); line-height: 1; position: absolute; top: 1rem; right: 1.5rem;
    transition: color 0.3s;
  }
  .settore-card:hover .settore-num { color: rgba(30,114,184,0.22); }
  .settore-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--white); margin-bottom: 0.7rem; margin-top: 0.5rem;
  }
  .settore-desc { font-size: 0.85rem; line-height: 1.7; color: var(--text-light); }
  .settore-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }

  /* MISSION */
  #mission {
    background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
    position: relative; overflow: hidden;
  }
  #mission::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 80%, rgba(30,114,184,0.06) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(24,33,48,0.4) 0%, transparent 50%);
  }
  .mission-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
  .mission-statements { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem; text-align: left; }
  .mission-item { padding: 2rem; border: 1px solid var(--border-light); position: relative; }
  .mission-item::before {
    content: ''; position: absolute; top: -1px; left: 2rem; width: 40px; height: 2px;
    background: var(--blue);
  }
  .mission-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-style: italic; font-weight: 400;
    color: var(--blue-pale); line-height: 1.6; margin-bottom: 1rem;
  }
  .mission-body { font-size: 0.85rem; line-height: 1.8; color: var(--text-light); }

  /* APPROCCIO */
  #approccio { background: var(--off-white); color: var(--dark); }
  #approccio .section-label { color: var(--blue); }
  #approccio .section-title { color: var(--dark); }
  .approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(0,0,0,0.1); margin-top: 3rem; }
  .approach-step { padding: 3rem 2.5rem; border-right: 1px solid rgba(0,0,0,0.1); position: relative; transition: background 0.2s; }
  .approach-step:last-child { border-right: none; }
  .approach-step:hover { background: rgba(30,114,184,0.04); }
  .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em;
    color: var(--blue); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .step-num::after { content: ''; flex: 1; height: 1px; background: var(--blue); opacity: 0.4; }
  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--dark); margin-bottom: 1rem;
  }
  .step-desc { font-size: 0.9rem; line-height: 1.8; color: #4a5a6e; }

  /* CTA STRIP */
  #cta-strip {
    background: var(--blue); padding: 4rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  }
  .cta-strip-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700; text-transform: uppercase; line-height: 1; color: var(--white);
    margin-bottom: 0.5rem;
  }
  .cta-strip-text p { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
  .btn-white {
    display: inline-block; padding: 1rem 2.5rem;
    background: var(--white); color: var(--blue);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; text-decoration: none; white-space: nowrap;
    transition: all 0.25s;
  }
  .btn-white:hover { background: var(--off-white); }

  /* FORM CONTATTI */
  #contatti { background: var(--dark-mid); }
  .contatti-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
  .contatti-info .section-title { color: var(--white); }
  .contatti-info p { font-size: 0.95rem; line-height: 1.8; color: var(--text-light); margin-bottom: 2.5rem; }
  .info-items { display: flex; flex-direction: column; gap: 1.5rem; }
  .info-item { display: flex; align-items: flex-start; gap: 1rem; }
  .info-icon {
    width: 40px; height: 40px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .info-icon svg { width: 18px; height: 18px; stroke: var(--blue-light); }
  .info-text strong { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 0.2rem; }
  .info-text span { font-size: 0.9rem; color: var(--text-light); }

  /* FORM */
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-light);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    padding: 0.85rem 1rem; font-family: 'Barlow', sans-serif;
    font-size: 0.9rem; color: var(--white);
    transition: border-color 0.2s, background 0.2s;
    outline: none; appearance: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(122,144,170,0.5); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--blue); background: rgba(30,114,184,0.05); }
  .form-group select option { background: var(--dark-mid); color: var(--white); }
  .form-group textarea { resize: vertical; min-height: 130px; }
  .form-privacy {
    display: flex; align-items: flex-start; gap: 0.8rem;
    font-size: 0.8rem; color: var(--text-light); line-height: 1.5; cursor: pointer;
  }
  .form-privacy input[type="checkbox"] {
    width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
    accent-color: var(--blue);
  }
  .form-submit {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem;
  }
  .form-note { font-size: 0.78rem; color: var(--text-light); }
  #form-success {
    display: none; padding: 1rem 1.5rem;
    background: rgba(30,114,184,0.15); border: 1px solid var(--blue);
    color: var(--blue-pale); font-size: 0.9rem;
  }

  /* FOOTER */
  footer { background: #080e16; padding: 4rem 4rem 2rem; border-top: 1px solid var(--border); }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
  .footer-logo { margin-bottom: 1rem; }
  .footer-logo img { height: 40px; filter: brightness(0.9); }
  .footer-tagline { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 1.2rem; }
  .footer-about { font-size: 0.85rem; line-height: 1.8; color: var(--text-light); max-width: 300px; }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a { font-size: 0.85rem; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--blue-light); }
  .footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
  .footer-copy { font-size: 0.8rem; color: var(--text-light); }
  .footer-values { display: flex; gap: 1.5rem; }
  .footer-values span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; color: var(--blue-light); }
  .footer-values span::before { content: '#'; }
  .mr-10{margin-right: 10px;}
  /* COOKIE BANNER */
  .cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    z-index: 200;
    width: min(920px, calc(100% - 2rem));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem 1.4rem;
    background: rgba(8,14,22,0.96);
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    backdrop-filter: blur(18px);
    transform: translate(-50%, calc(100% + 2rem));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .cookie-banner.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
  }
  .cookie-banner.is-hidden { display: none; }
  .cookie-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.35rem;
  }
  .cookie-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
  }
  .cookie-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .cookie-btn {
    min-width: 112px;
    padding: 0.78rem 1.15rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .cookie-btn-primary {
    color: var(--white);
    background: var(--blue);
    border: 1px solid var(--blue);
  }
  .cookie-btn-primary:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
  }
  .cookie-btn-ghost {
    color: var(--blue-pale);
    background: transparent;
    border: 1px solid var(--border);
  }
  .cookie-btn-ghost:hover {
    color: var(--white);
    border-color: var(--blue-light);
  }



  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
  }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    nav { padding: 1rem 2rem; }
    .nav-links { display: none; }
    section { padding: 5rem 2rem; }
    #hero { grid-template-columns: 1fr; padding: 7rem 2rem 3rem; }
    .hero-right { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    #chi-siamo { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
    .settori-grid { grid-template-columns: 1fr 1fr; }
    .mission-statements { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .approach-step { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contatti-inner { grid-template-columns: 1fr; gap: 3rem; }
    #cta-strip { flex-direction: column; text-align: center; padding: 3rem 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .cookie-banner {
      grid-template-columns: 1fr;
      bottom: 1rem;
      align-items: stretch;
    }
    .cookie-actions {
      justify-content: stretch;
    }
    .cookie-btn {
      flex: 1 1 130px;
    }
  }