/* ── TOKEN SYSTEM ── */
    :root {
      --navy:        #0B2240;
      --navy-mid:    #0F2D50;
      --navy-light:  #1A3A63;
      --teal:        #2DBFA8;
      --teal-dark:   #1E9C88;
      --teal-faint:  #E8F8F6;
      --grey-bg:     #F4F7FA;
      --grey-light:  #EEF2F7;
      --grey-border: #D8E2ED;
      --grey-text:   #5A6880;
      --body-text:   #2C3A4A;
      --white:       #FFFFFF;

      --font-display: 'Sora', sans-serif;
      --font-body:    'Inter', sans-serif;

      --radius-sm:   6px;
      --radius-md:   8px;
      --radius-lg:   8px;
      --radius-xl:   8px;

      --shadow-sm: 0 1px 4px rgba(11,34,64,0.08);
      --shadow-md: 0 4px 20px rgba(11,34,64,0.12);
      --shadow-lg: 0 12px 40px rgba(11,34,64,0.16);
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--body-text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── LAYOUT ── */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }
    section { padding: 96px 0; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(11,34,64,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(45,191,168,0.15);
    }
    nav.is-scrolled { border-bottom-color: rgba(45,191,168,0.32); }
    .nav-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      color: var(--white);
    }
    .logo-mark {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      object-fit: contain;
      border-radius: 50%;
      background: var(--white);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-cta {
      background: var(--teal);
      color: var(--navy) !important;
      font-weight: 600 !important;
      padding: 9px 20px;
      border-radius: var(--radius-sm);
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
    .nav-mobile-contact { display: none; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
      text-decoration: none;
    }
    .btn-primary {
      background: var(--teal);
      color: var(--navy);
    }
    .btn-primary:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(45,191,168,0.35);
    }
    .btn-ghost {
      background: transparent;
      color: rgba(255,255,255,0.85);
      border: 1.5px solid rgba(255,255,255,0.25);
    }
    .btn-ghost:hover {
      border-color: var(--teal);
      color: var(--teal);
    }
    .btn-outline {
      background: transparent;
      color: var(--teal);
      border: 1.5px solid var(--teal);
    }
    .btn-outline:hover {
      background: var(--teal);
      color: var(--navy);
    }

    /* ── EYEBROW ── */
    .eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 16px;
    }

    /* ── SECTION TITLE ── */
    .section-title {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-intro {
      font-size: 17px;
      color: var(--grey-text);
      max-width: 600px;
      line-height: 1.7;
    }

    /* ════════════════════════════════
       01 — HERO
    ════════════════════════════════ */
    #hero {
      background: var(--navy);
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 720px;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(45,191,168,0.12);
      border: 1px solid rgba(45,191,168,0.25);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 500;
      color: var(--teal);
      margin-bottom: 32px;
    }
    .hero-tag-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: 62px;
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: 0;
    }
    .hero-title em {
      font-style: normal;
      color: var(--teal);
    }
    .hero-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 40px;
    }
    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .hero-reassurance {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-reassurance::before {
      content: '✓';
      color: var(--teal);
      font-weight: 700;
    }

    /* ════════════════════════════════
       02 — PROBLEMA (Prima/Dopo)
    ════════════════════════════════ */
    #problema {
      background: var(--grey-bg);
    }
    .problema-header {
      max-width: 640px;
      margin-bottom: 64px;
    }
    .prima-dopo {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
      align-items: stretch;
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      border: 1px solid var(--grey-border);
    }
    .pd-col {
      padding: 40px 36px;
    }
    .pd-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: uppercase;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .pd-label.before { color: #94A3B8; }
    .pd-label.after { color: var(--teal); }
    .pd-label-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
    }
    .pd-label.before .pd-label-dot { background: #CBD5E1; }
    .pd-label.after .pd-label-dot { background: var(--teal); }
    .pd-steps {
      display: flex;
      flex-direction: column;
      gap: 12px;
      list-style: none;
    }
    .pd-step {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      line-height: 1.5;
    }
    .pd-step-num {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .pd-col.before-col .pd-step-num {
      background: #F1F5F9;
      color: #94A3B8;
    }
    .pd-col.after-col .pd-step-num {
      background: var(--teal-faint);
      color: var(--teal-dark);
    }
    .pd-col.before-col .pd-step { color: var(--grey-text); }
    .pd-col.after-col .pd-step { color: var(--body-text); }
    .pd-divider {
      width: 1px;
      background: var(--grey-border);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pd-divider-badge {
      position: absolute;
      background: var(--navy);
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 10px;
      border-radius: var(--radius-sm);
      white-space: nowrap;
      letter-spacing: 0;
    }
    .pd-result {
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid var(--grey-light);
      font-size: 14px;
      color: var(--grey-text);
      font-style: italic;
    }
    .pd-result strong { color: var(--teal-dark); font-style: normal; }

    /* ════════════════════════════════
       03 — SETTORI
    ════════════════════════════════ */
    #settori { background: var(--white); }
    .settori-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }
    .settori-header .section-intro { margin: 0 auto; }
    .settori-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 40px;
    }
    .settore-tab {
      padding: 9px 20px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      border: 1.5px solid var(--grey-border);
      background: var(--white);
      color: var(--grey-text);
      transition: all 0.2s;
    }
    .settore-tab:hover, .settore-tab.active {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }
    .settori-panels { position: relative; }
    .settore-panel {
      display: none;
      background: var(--grey-bg);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--grey-border);
    }
    .settore-panel.active { display: grid; grid-template-columns: 1fr 1fr; }
    .settore-content { padding: 52px 48px; }
    .settore-icon {
      width: 48px;
      height: 48px;
      background: var(--teal-faint);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 22px;
    }
    .settore-pain {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 20px;
    }
    .settore-bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px;
    }
    .settore-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      line-height: 1.5;
      color: var(--body-text);
    }
    .settore-bullets li::before {
      content: '→';
      color: var(--teal);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .settore-metric {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--white);
      border: 1px solid var(--grey-border);
      border-radius: var(--radius-md);
      padding: 16px 20px;
    }
    .settore-metric-num {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      color: var(--teal-dark);
    }
    .settore-metric-label {
      font-size: 13px;
      color: var(--grey-text);
      line-height: 1.4;
    }
    .settore-visual {
      background: var(--navy);
      padding: 52px 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .settore-visual::before {
      content: none;
    }
    .settore-visual-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .settore-visual-num {
      font-family: var(--font-display);
      font-size: 80px;
      font-weight: 800;
      color: rgba(45,191,168,0.15);
      line-height: 1;
      margin-bottom: 8px;
    }
    .settore-visual-text {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0;
    }
    .settori-note {
      margin-top: 20px;
      font-size: 12px;
      color: var(--grey-text);
      line-height: 1.6;
    }

    /* ════════════════════════════════
       04 — CASO REALE
    ════════════════════════════════ */
    #caso {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    #caso::before {
      content: none;
    }
    .caso-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .caso-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 20px;
    }
    .caso-title {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .caso-text {
      font-size: 16px;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      margin-bottom: 36px;
    }
    .caso-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .caso-metric {
      background: rgba(255,255,255,0.04);
      padding: 28px 20px;
      text-align: center;
    }
    .caso-metric-num {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 800;
      color: var(--teal);
      line-height: 1;
      margin-bottom: 6px;
    }
    .caso-metric-label {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      line-height: 1.4;
    }
    .caso-quote {
      background: rgba(45,191,168,0.08);
      border: 1px solid rgba(45,191,168,0.2);
      border-radius: var(--radius-lg);
      padding: 40px;
    }
    .caso-flow-label {
      margin-bottom: 24px;
      color: var(--teal);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }
    .caso-flow-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }
    .caso-flow-list li {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.04);
    }
    .caso-flow-list li > span {
      color: var(--teal);
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
    }
    .caso-flow-list strong,
    .caso-flow-list small { display: block; }
    .caso-flow-list strong {
      color: var(--white);
      font-size: 15px;
    }
    .caso-flow-list small {
      margin-top: 2px;
      color: rgba(255,255,255,0.5);
      font-size: 12px;
    }

    /* ════════════════════════════════
       05 — METODO
    ════════════════════════════════ */
    #metodo { background: var(--grey-bg); }
    .metodo-header {
      max-width: 640px;
      margin-bottom: 64px;
    }
    .metodo-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--grey-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .metodo-step {
      background: var(--white);
      padding: 40px 32px;
      position: relative;
    }
    .metodo-step-num {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 800;
      color: var(--grey-light);
      line-height: 1;
      margin-bottom: 20px;
    }
    .metodo-step-title {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .metodo-step-text {
      font-size: 14px;
      color: var(--grey-text);
      line-height: 1.65;
    }
    .metodo-step-accent {
      width: 3px;
      height: 32px;
      background: var(--teal);
      border-radius: 2px;
      margin-bottom: 20px;
    }
    .metodo-footer {
      margin-top: 32px;
      padding: 24px 32px;
      background: var(--navy);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .metodo-footer-icon {
      width: 36px;
      height: 36px;
      background: rgba(45,191,168,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--teal);
      font-size: 16px;
    }
    .metodo-footer-text {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      line-height: 1.5;
    }
    .metodo-footer-text strong { color: var(--white); }

    /* ════════════════════════════════
       06 — STRUMENTI (loghi)
    ════════════════════════════════ */
    #strumenti {
      background: var(--white);
      padding: 56px 0;
      border-top: 1px solid var(--grey-border);
      border-bottom: 1px solid var(--grey-border);
    }
    .strumenti-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--grey-text);
      text-align: center;
      margin-bottom: 28px;
    }
    .strumenti-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .strumento-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border: 1px solid var(--grey-border);
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      color: var(--grey-text);
      background: var(--white);
      transition: all 0.2s;
    }
    .strumento-chip:hover {
      border-color: var(--teal);
      color: var(--teal-dark);
    }
    .strumento-chip-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--teal);
      opacity: 0.6;
    }

    /* ════════════════════════════════
       07 — CHI SIAMO
    ════════════════════════════════ */
    #chi-siamo { background: var(--grey-bg); }
    .chi-siamo-header {
      max-width: 640px;
      margin-bottom: 64px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .team-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--grey-border);
      display: flex;
      flex-direction: column;
    }
    .team-photo {
      height: 112px;
      background: var(--navy);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .team-photo::before {
      content: none;
    }
    .team-photo-placeholder {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-sm);
      background: rgba(45,191,168,0.15);
      border: 2px solid rgba(45,191,168,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      position: relative;
      z-index: 1;
    }
    .team-info { padding: 32px; }
    .team-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .team-role {
      font-size: 13px;
      font-weight: 600;
      color: var(--teal-dark);
      text-transform: uppercase;
      letter-spacing: 0;
      margin-bottom: 16px;
    }
    .team-bio {
      font-size: 15px;
      color: var(--grey-text);
      line-height: 1.65;
      margin-bottom: 24px;
    }
    .team-linkedin {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--teal-dark);
      transition: color 0.2s;
    }
    .team-linkedin:hover { color: var(--navy); }

    /* ════════════════════════════════
       08 — FAQ
    ════════════════════════════════ */
    #faq { background: var(--white); }
    .faq-header {
      max-width: 640px;
      margin-bottom: 56px;
    }
    .faq-list {
      max-width: 800px;
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--grey-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .faq-item {
      border-bottom: 1px solid var(--grey-border);
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-question {
      width: 100%;
      text-align: left;
      padding: 24px 28px;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      transition: background 0.15s;
    }
    .faq-question:hover { background: var(--grey-bg); }
    .faq-question.active { background: var(--teal-faint); color: var(--teal-dark); }
    .faq-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--grey-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
      color: var(--grey-text);
      transition: all 0.2s;
    }
    .faq-question.active .faq-icon {
      background: var(--teal);
      color: var(--white);
      transform: rotate(45deg);
    }
    .faq-answer {
      display: none;
      padding: 0 28px 24px;
      font-size: 15px;
      color: var(--grey-text);
      line-height: 1.7;
    }
    .faq-answer.open { display: block; }
    .faq-answer strong { color: var(--body-text); }

    /* ════════════════════════════════
       09 — CTA FINALE
    ════════════════════════════════ */
    #contatto {
      background: var(--grey-bg);
    }
    .contatto-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .contatto-left { }
    .contatto-title {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .contatto-sub {
      font-size: 16px;
      color: var(--grey-text);
      line-height: 1.7;
      margin-bottom: 36px;
    }
    .contatto-channels {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .contatto-channel {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: var(--radius-md);
      border: 1.5px solid var(--grey-border);
      background: var(--white);
      font-size: 15px;
      font-weight: 500;
      color: var(--body-text);
      transition: all 0.2s;
      cursor: pointer;
      text-decoration: none;
    }
    .contatto-channel:hover {
      border-color: var(--teal);
      color: var(--teal-dark);
      box-shadow: var(--shadow-sm);
    }
    .contatto-channel-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .channel-wa .contatto-channel-icon { background: #E7F7EF; }
    .channel-email .contatto-channel-icon { background: var(--teal-faint); }
    .contatto-channel small {
      font-size: 12px;
      color: var(--grey-text);
      font-weight: 400;
      display: block;
      margin-top: 2px;
    }
    .contatto-form {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px;
      border: 1px solid var(--grey-border);
      box-shadow: var(--shadow-sm);
    }
    .form-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .form-sub {
      font-size: 14px;
      color: var(--grey-text);
      margin-bottom: 28px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--body-text);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--grey-border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--body-text);
      background: var(--white);
      transition: border-color 0.2s;
      outline: none;
      resize: vertical;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--teal);
    }
    .form-group textarea { min-height: 110px; }
    .form-disclaimer {
      font-size: 12px;
      color: var(--grey-text);
      margin-top: 16px;
      line-height: 1.5;
    }
    .form-submit {
      width: 100%;
      padding: 15px;
      background: var(--teal);
      color: var(--navy);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 15px;
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 4px;
    }
    .form-submit:hover {
      background: var(--teal-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(45,191,168,0.3);
    }

    /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
    footer {
      background: var(--navy);
      padding: 48px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      color: var(--white);
    }
    .footer-logo img {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--white);
    }
    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--teal); }
    .footer-copy {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
    }

    /* ════════════════════════════════
       WHATSAPP FLOATING
    ════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .wa-float:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    }
    .wa-float svg { width: 28px; height: 28px; fill: white; }

    /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
    @media (max-width: 900px) {
      section { padding: 72px 0; }
      .section-title { font-size: 34px; }
      .hero-title { font-size: 46px; }
      .caso-title, .contatto-title { font-size: 32px; }
      .prima-dopo { grid-template-columns: 1fr; }
      .pd-divider { display: none; }
      .pd-col { padding: 28px 24px; }
      .settore-panel.active { grid-template-columns: 1fr; }
      .settore-visual { display: none; }
      .caso-inner { grid-template-columns: 1fr; gap: 40px; }
      .caso-metrics { grid-template-columns: repeat(3,1fr); }
      .metodo-steps { grid-template-columns: 1fr 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .contatto-inner { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 600px) {
      .nav-links { display: none; }
      .nav-mobile-contact {
        width: 38px;
        height: 38px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--teal);
        color: var(--navy);
        font-size: 11px;
        font-weight: 700;
      }
      .nav-mobile-contact svg { width: 22px; height: 22px; fill: currentColor; }
      #hero { padding: 108px 0 40px; }
      .hero-tag { margin-bottom: 24px; font-size: 12px; }
      .hero-title { font-size: 36px; }
      .hero-title { margin-bottom: 18px; }
      .hero-sub { margin-bottom: 28px; font-size: 16px; line-height: 1.6; }
      .hero-ctas { gap: 12px; margin-bottom: 28px; }
      .section-title { font-size: 30px; }
      .caso-title, .contatto-title { font-size: 28px; }
      .hero-ctas { flex-direction: column; }
      .btn { width: 100%; justify-content: center; }
      .metodo-steps { grid-template-columns: 1fr; }
      .caso-metrics { grid-template-columns: 1fr; }
      .contatto-form { padding: 28px 20px; }
      .wa-float { display: none; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
