:root {
      --green: #00684f;
      --green-dark: #064437;
      --green-soft: #d9eee5;
      --ink: #111513;
      --muted: #5c6561;
      --line: #dce2de;
      --paper: #f5f6f3;
      --white: #ffffff;
      --max: 1240px;
      --pad: clamp(22px, 4vw, 58px);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; }
    img { max-width: 100%; display: block; }
    button, a { -webkit-tap-highlight-color: transparent; }
    .wrap { width: min(var(--max), calc(100% - 2 * var(--pad))); margin-inline: auto; }

    .topbar {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px var(--pad);
      color: var(--white);
      background: var(--green-dark);
      font-size: 12px;
      font-weight: 750;
      letter-spacing: .11em;
      text-align: center;
      text-transform: uppercase;
    }

    header {
      height: 98px;
      background: rgba(255,255,255,.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
      position: relative;
      z-index: 4;
    }
    .nav {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      width: clamp(172px, 17vw, 232px);
      height: 70px;
      overflow: hidden;
      flex: 0 0 auto;
      display: flex;
      align-items: center;
    }
    .brand img { width: 100%; height: 100%; object-fit: contain; }
    .nav-meta { display: flex; align-items: center; gap: clamp(20px, 4vw, 54px); }
    .nav-note {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      text-decoration: none;
      text-transform: uppercase;
    }
    .link-arrow::after {
      content: "→";
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      color: var(--white);
      background: var(--green);
      transition: transform .2s ease, background .2s ease;
    }
    .link-arrow:hover::after { transform: translateX(3px); background: var(--green-dark); }

    @keyframes heroRise {
      from { opacity: 0; transform: translateY(22px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroScale {
      from { background-size: auto 104%; }
      to { background-size: auto 108%; }
    }

    .hero {
      display: grid;
      min-height: calc(100svh - 140px);
      grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
      background: var(--paper);
      overflow: hidden;
    }
    .hero-copy {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(64px, 8vw, 118px) max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))) clamp(54px, 7vw, 86px) var(--pad);
      background: var(--paper);
    }
    .hero-copy::after {
      content: "";
      position: absolute;
      top: 0;
      right: -95px;
      width: 160px;
      height: 100%;
      background: linear-gradient(90deg, var(--paper) 15%, rgba(245,246,243,0));
      pointer-events: none;
    }
    .hero-copy > * { animation: heroRise 1.05s cubic-bezier(.22,.7,.2,1) both; }
    .hero-copy > :nth-child(2) { animation-delay: .14s; }
    .hero-copy > :nth-child(3) { animation-delay: .27s; }
    .hero-copy > :nth-child(4) { animation-delay: .39s; }
    .eyebrow {
      display: flex;
      align-items: center;
      gap: 13px;
      margin: 0 0 26px;
      color: var(--green);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 33px; height: 3px; background: currentColor; }
    h1 {
      max-width: 790px;
      margin: 0;
      font-size: clamp(49px, 6.3vw, 92px);
      line-height: .98;
      letter-spacing: -.055em;
      font-weight: 790;
    }
    h1 em { color: var(--green); font-style: normal; }
    .hero-lead {
      max-width: 580px;
      margin: 30px 0 0;
      color: #404844;
      font-size: clamp(17px, 1.45vw, 21px);
      line-height: 1.6;
    }
    .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 38px; }
    .button {
      display: inline-flex;
      min-height: 56px;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 0 24px;
      color: var(--white);
      background: var(--green);
      border: 1px solid var(--green);
      font-size: 13px;
      font-weight: 850;
      letter-spacing: .08em;
      text-decoration: none;
      text-transform: uppercase;
      transition: background .2s ease, transform .2s ease;
    }
    .button:hover { background: var(--green-dark); transform: translateY(-2px); }
    .button span { font-size: 20px; line-height: 1; }
    .phone-link { font-weight: 760; text-decoration-thickness: 1px; text-underline-offset: 5px; }

    .hero-visual {
      position: relative;
      min-height: 630px;
      background: #0d2e25 url("assets/fm-sede.jpg") center 42% / cover no-repeat;
      animation: heroScale 14s cubic-bezier(.2,.65,.25,1) both;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.02) 45%, rgba(0,31,23,.67) 100%);
    }
    .hero-visual::after {
      content: "";
      position: absolute;
      inset: auto 0 0 auto;
      width: min(37vw, 520px);
      height: min(37vw, 520px);
      border: 1px solid rgba(255,255,255,.42);
      border-right: 0;
      border-bottom: 0;
      border-radius: 100% 0 0 0;
    }
    .visual-caption {
      position: absolute;
      z-index: 1;
      right: var(--pad);
      bottom: 34px;
      left: var(--pad);
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      color: var(--white);
    }
    .visual-caption strong { display: block; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
    .visual-caption span { display: block; margin-top: 5px; font-size: 13px; opacity: .8; }
    .visual-mark { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

    .countdown-section { color: var(--white); background: var(--green); }
    .countdown-grid {
      display: grid;
      grid-template-columns: 1.1fr 1.9fr;
      align-items: stretch;
    }
    .launch-copy { padding: 48px 44px 48px 0; border-right: 1px solid rgba(255,255,255,.27); }
    .launch-copy small { display: block; margin-bottom: 8px; opacity: .72; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }
    .launch-copy strong { font-size: clamp(23px, 2.2vw, 33px); line-height: 1.2; }
    .countdown { display: grid; grid-template-columns: repeat(4, 1fr); }
    .time {
      display: grid;
      min-height: 142px;
      place-content: center;
      padding: 26px 12px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.27);
    }
    .time:last-child { border-right: 0; }
    .time b { font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -.045em; }
    .time span { margin-top: 10px; font-size: 10px; font-weight: 800; letter-spacing: .14em; opacity: .74; text-transform: uppercase; }

    .statement { padding: clamp(88px, 10vw, 150px) 0; }
    .section-head {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: clamp(48px, 8vw, 130px);
      align-items: end;
      margin-bottom: 68px;
    }
    .kicker { color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
    h2 {
      margin: 14px 0 0;
      font-size: clamp(38px, 5vw, 70px);
      line-height: 1.04;
      letter-spacing: -.05em;
    }
    .section-intro { max-width: 640px; margin: 0; color: var(--muted); font-size: clamp(17px, 1.6vw, 21px); }
    .text-highlight {
      position: relative;
      color: var(--green-dark);
      font-weight: 780;
      background-image: linear-gradient(90deg, rgba(0,104,79,.13), rgba(0,104,79,.28));
      background-repeat: no-repeat;
      background-position: 0 88%;
      background-size: 100% 38%;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }
    .motion-ready .text-highlight {
      background-size: 0 38%;
      transition: background-size 1.2s cubic-bezier(.22,.7,.2,1);
    }
    .motion-ready .section-head.is-visible .text-highlight { background-size: 100% 38%; }
    .motion-ready .section-head.is-visible .text-highlight:nth-of-type(2) { transition-delay: .2s; }
    .motion-ready .section-head.is-visible .text-highlight:nth-of-type(3) { transition-delay: .4s; }

    .facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .fact { min-height: 200px; padding: 34px 28px; border-right: 1px solid var(--line); }
    .fact:first-child { padding-left: 0; }
    .fact:last-child { border-right: 0; padding-right: 0; }
    .fact b { display: block; color: var(--green); font-size: clamp(37px, 4vw, 57px); line-height: 1; letter-spacing: -.045em; }
    .fact strong { display: block; margin-top: 20px; font-size: 13px; letter-spacing: .07em; text-transform: uppercase; }
    .fact p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }

    .operations { color: var(--white); background: var(--ink); }
    .operations-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 730px; }
    .operations-image {
      position: relative;
      background: #202522 url("assets/fm-passivazione.jpg") center / cover no-repeat;
    }
    .operations-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,104,79,.06), rgba(0,0,0,.45)); }
    .operations-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(62px, 7vw, 105px); }
    .operations-copy .kicker { color: #58bd94; }
    .operations-copy h2 {
      max-width: 550px;
      color: var(--white) !important;
    }
    .operations-copy > p { max-width: 590px; margin: 27px 0 38px; color: #c5ccc8; font-size: 18px; }
    .services { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
    .services li { padding: 10px 13px; border: 1px solid #3f4844; color: #eff3f0; font-size: 12px; font-weight: 740; letter-spacing: .05em; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
    .services li:hover { color: var(--ink); background: #73d3aa; border-color: #73d3aa; transform: translateY(-2px); }
    .services-note {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 17px;
      align-items: start;
      margin-top: 32px;
      padding-top: 26px;
      border-top: 1px solid #3f4844;
      color: #c5ccc8;
      font-size: 13px;
    }
    .services-note::before { content: "+"; display: grid; width: 28px; height: 28px; place-items: center; color: var(--ink); background: #58bd94; font-size: 19px; font-weight: 800; }
    .services-note strong { color: var(--white); }
    .services-note a { color: #73d3aa; text-underline-offset: 4px; }

    .standards {
      position: relative;
      overflow: hidden;
      padding: clamp(80px, 9vw, 125px) 0;
      background: var(--white);
    }
    .standards::before {
      content: "";
      position: absolute;
      top: -180px;
      right: -140px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: rgba(0, 104, 79, .08);
      pointer-events: none;
    }
    .standards-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(270px, .62fr) minmax(0, 1.38fr);
      gap: clamp(48px, 6vw, 86px);
      align-items: center;
    }
    .standards h2 { max-width: 460px; }
    .standards-copy > p { max-width: 390px; margin: 27px 0 0; color: var(--muted); font-size: 17px; }
    .standards-note {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-top: 42px;
      color: var(--green);
      font-size: 11px;
      font-weight: 850;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .standards-note::before { content: "↓"; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 16px; }
    .certs { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
    .cert {
      min-width: 0;
      padding: 12px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 13px 34px rgba(18, 39, 31, .09);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .cert:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(18, 39, 31, .12); }
    .cert-preview {
      position: relative;
      display: block;
      aspect-ratio: 210 / 297;
      overflow: hidden;
      background: var(--white);
      border: 1px solid #e3e7e4;
    }
    .cert-preview img {
      width: 100%;
      height: 100%;
      aspect-ratio: auto;
      object-fit: contain;
      object-position: top center;
      transition: transform .35s ease;
    }
    .cert-preview:hover img { transform: scale(1.018); }
    .cert-body { padding: 22px 10px 10px; }
    .cert-body strong { display: block; font-size: 19px; }
    .cert-body p { min-height: 38px; margin: 7px 0 19px; color: var(--muted); font-size: 12px; line-height: 1.55; }
    .cert-download {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      color: var(--green);
      border-top: 1px solid var(--line);
      font-size: 10px;
      font-weight: 850;
      letter-spacing: .09em;
      text-decoration: none;
      text-transform: uppercase;
    }
    .cert-download::after { content: "↓"; font-size: 18px; line-height: 1; }
    .cert-download:hover { color: var(--green-dark); }

    .contact { padding: clamp(80px, 9vw, 130px) 0 54px; color: var(--white); background: var(--green-dark); }
    .contact-top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; padding-bottom: 76px; }
    .contact h2 {
      max-width: 820px;
      margin-top: 0;
      color: var(--white) !important;
    }
    .contact .button { color: var(--green-dark); background: var(--white); border-color: var(--white); justify-self: end; }
    .contact .button:hover { color: var(--white); background: transparent; }
    .contact-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
    .contact-item { padding: 31px 24px 30px 0; border-right: 1px solid rgba(255,255,255,.22); }
    .contact-item:not(:first-child) { padding-left: 24px; }
    .contact-item:last-child { border-right: 0; }
    .contact-item small { display: block; margin-bottom: 11px; color: #a8c8bb; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
    .contact-item a, .contact-item address { font-size: 14px; line-height: 1.7; font-style: normal; text-decoration: none; }
    .contact-item a:hover { text-decoration: underline; text-underline-offset: 4px; }
    footer { display: flex; justify-content: space-between; gap: 28px; padding-top: 30px; color: #9bb7ac; font-size: 11px; }
    footer nav { display: flex; gap: 24px; }
    footer a { text-decoration: none; }

    .motion-ready .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1.05s cubic-bezier(.22,.7,.2,1), transform 1.05s cubic-bezier(.22,.7,.2,1);
      transition-delay: var(--reveal-delay, 0ms);
    }
    .motion-ready .reveal.reveal-left { transform: translateX(-32px); }
    .motion-ready .reveal.reveal-right { transform: translateX(32px); }
    .motion-ready .reveal.is-visible { opacity: 1; transform: translate(0,0); }

    @media (max-width: 980px) {
      .hero { grid-template-columns: 1fr; }
      .hero-copy { padding-right: var(--pad); }
      .hero-copy::after { display: none; }
      .hero-visual { min-height: 590px; background-position: center 42%; }
      .countdown-grid, .section-head, .standards-grid, .contact-top { grid-template-columns: 1fr; }
      .launch-copy { padding-right: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.27); }
      .facts { grid-template-columns: repeat(2,1fr); }
      .fact:nth-child(2) { border-right: 0; }
      .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .fact:nth-child(3) { padding-left: 0; }
      .operations-grid { grid-template-columns: 1fr; }
      .operations-image { min-height: 530px; }
      .contact .button { justify-self: start; }
      .contact-list { grid-template-columns: repeat(2,1fr); }
      .contact-item:nth-child(2) { border-right: 0; }
      .contact-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
      .contact-item:nth-child(3) { padding-left: 0; }
    }

    @media (max-width: 640px) {
      .topbar { min-height: 38px; font-size: 9px; }
      header { height: 82px; }
      .brand { width: 153px; height: 58px; }
      .nav-note { display: none; }
      .nav .link-arrow { font-size: 0; gap: 0; }
      .hero-copy { padding-top: 62px; padding-bottom: 56px; }
      h1 { font-size: clamp(48px, 14vw, 67px); }
      .hero-lead { font-size: 17px; }
      .hero-actions { align-items: flex-start; flex-direction: column; }
      .hero-visual { min-height: 480px; background-position: center 42%; }
      .visual-caption { bottom: 24px; }
      .visual-mark { display: none; }
      .countdown-grid { width: 100%; }
      .launch-copy { padding: 33px var(--pad); }
      .countdown { grid-template-columns: repeat(4,1fr); }
      .time { min-height: 108px; padding: 21px 5px; }
      .time b { font-size: 31px; }
      .time span { font-size: 8px; letter-spacing: .09em; }
      .section-head { gap: 28px; margin-bottom: 48px; }
      .facts { grid-template-columns: 1fr; }
      .fact { min-height: auto; padding: 27px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .fact:nth-child(2), .fact:nth-child(3) { padding-left: 0; }
      .fact:last-child { border-bottom: 0; }
      .operations-image { min-height: 380px; }
      .operations-copy { padding: 62px var(--pad); }
      .certs { grid-template-columns: 1fr; }
      .standards::before { width: 260px; height: 260px; top: -130px; right: -100px; }
      .standards-note { margin-top: 28px; }
      .cert { padding: 10px; }
      .cert-body p { min-height: 0; }
      .contact-list { grid-template-columns: 1fr; }
      .contact-item, .contact-item:not(:first-child), .contact-item:nth-child(3) { padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
      .contact-item:last-child { border-bottom: 0; }
      footer { flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .motion-ready .reveal { opacity: 1 !important; transform: none !important; }
    }
