*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:     #0A0A0F;
      --navy:      #12121C;
      --gold:      #C9A84C;
      --gold-dim:  #9E7E33;
      --gold-pale: rgba(201,168,76,0.12);
      --cream:     #F5F4F0;
      --muted:     #6B7280;
      --border:    rgba(201,168,76,0.18);
      --font-display: 'Syne', sans-serif;
      --font-body:    'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--black);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── HEADER ──────────────────────────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(245,244,240,0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      height: 68px;
      display: flex;
      align-items: center;
      padding: 0 40px;
      gap: 40px;
    }

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .logo img { height: 38px; width: auto; }

    nav {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
      margin-left: 20px;
    }
    nav a {
      font-family: var(--font-body);
      font-size: 13.5px;
      font-weight: 500;
      color: var(--black);
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 6px;
      letter-spacing: 0.01em;
      transition: color 0.2s, background 0.2s;
    }
    nav a:hover { color: var(--gold-dim); background: var(--gold-pale); }

    .header-cta {
      background: var(--black);
      color: #fff;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 10px 20px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s;
    }
    .header-cta:hover { background: #222234; transform: translateY(-1px); }
    .header-cta:active { transform: translateY(0); }

    .lang-switcher,
    .lang-switcher-fuori-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--muted);
      white-space: nowrap;
    }

  .lang-switcher{ display:none;}

    .lang-switcher button,
    .lang-switcher-fuori-nav button {
      appearance: none;
      border: 0;
      background: transparent;
      color: inherit;
      cursor: pointer;
      font: inherit;
      padding: 4px 2px;
      transition: color 0.2s;
    }
    .lang-switcher button:hover,
    .lang-switcher button[data-lang-active],
    .lang-switcher-fuori-nav button:hover,
    .lang-switcher-fuori-nav button[data-lang-active] {
      color: var(--gold-dim);
    }

    /* ── HERO ────────────────────────────────── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
      padding-top: 68px;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px 80px 64px;
      position: relative;
    }

    .hero-eyebrow {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(38px, 4.5vw, 56px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--black);
      margin-bottom: 24px;
    }
    .hero h1 span { color: var(--gold); }

    .hero-sub {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.7;
      color: var(--muted);
      max-width: 460px;
      margin-bottom: 36px;
    }

    .hero-benefits {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 44px;
    }
    .benefit-tag {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 500;
      color: var(--black);
      background: #fff;
      border: 1px solid rgba(0,0,0,0.1);
      padding: 7px 14px;
      border-radius: 50px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    .benefit-tag::before {
      content: '✓';
      color: var(--gold);
      font-weight: 700;
      font-size: 12px;
    }

    .hero-actions { display: flex; gap: 14px; align-items: center; }

    .btn-primary {
      background: var(--black);
      color: #fff;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(10,10,15,0.25);
    }
    .btn-primary:hover { background: #222234; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,10,15,0.3); }
    .btn-primary:active { transform: translateY(0); }

    .btn-ghost {
      background: transparent;
      color: var(--black);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      padding: 14px 20px;
      border-radius: 10px;
      border: 1.5px solid rgba(0,0,0,0.15);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold-dim); background: var(--gold-pale); }

    /* Hero right — split dark panel */
    .hero-right {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 48px;
    }
    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(201,168,76,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 30% 90%, rgba(201,168,76,0.07) 0%, transparent 60%);
    }

    /* Background pattern */
    .hero-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-image-stack {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .hero-image-stack img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.35;
      filter: grayscale(20%);
    }

    /* Floating badge cards */
    .badge-card {
      position: absolute;
      background: rgba(245,244,240,0.96);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 14px;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.28);
      backdrop-filter: blur(8px);
      z-index: 2;
    }
    .badge-card .badge-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: var(--gold-pale);
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .badge-card .badge-text {
      font-size: 13px;
      font-weight: 600;
      color: var(--black);
      font-family: var(--font-body);
      line-height: 1.2;
    }
    .badge-card .badge-sub {
      font-size: 11px;
      color: var(--muted);
      font-weight: 400;
    }
    .badge-top { top: 22%; right: 10%; }
    .badge-bottom { bottom: 24%; right: 8%; }

    /* Hero stat strip */
    .hero-stats {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: rgba(10,10,15,0.72);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-around;
      padding: 22px 40px;
      z-index: 2;
    }
    .hero-stat { text-align: center; }
    .hero-stat .num {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: -0.02em;
      display: block;
    }
    .hero-stat .label {
      font-size: 11px;
      color: rgba(255,255,255,0.55);
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* ── TRUST BAR ───────────────────────────── */
    .trust-bar {
      background: var(--black);
      padding: 28px 80px;
      display: flex;
      align-items: center;
      gap: 0;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .trust-intro {
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
      margin-right: 48px;
      padding-right: 48px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .trust-items {
      display: flex;
      gap: 48px;
      flex: 1;
      justify-content: space-around;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .trust-item .ti-icon {
      font-size: 18px;
      opacity: 0.8;
    }
    .trust-item .ti-text {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.75);
      white-space: nowrap;
    }

    /* ── SECTIONS COMMON ─────────────────────── */
    section { padding: 100px 80px; }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-eyebrow::before {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(30px, 3vw, 42px);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.12;
      color: var(--black);
      margin-bottom: 20px;
    }

    .section-body {
      font-size: 16px;
      line-height: 1.75;
      color: var(--muted);
      max-width: 640px;
    }

    /* ── VALUE PROP ──────────────────────────── */
    .value-section {
      background: #fff;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .value-visual {
      background: var(--navy);
      border-radius: 20px;
      aspect-ratio: 4/3;
      position: relative;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(10,10,15,0.18);
    }
    .value-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(201,168,76,0.15) 0%, transparent 70%);
    }
    .value-visual .vv-grid {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-template-rows: repeat(2,1fr);
      gap: 8px;
      padding: 24px;
    }
    .vv-cell {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 10px;
    }
    .vv-cell.highlight { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); }

    /* ── SOLUTIONS GRID ──────────────────────── */
    .solutions-section { background: var(--cream); }
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .sol-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 16px;
      padding: 36px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
      cursor: pointer;
    }
    .sol-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-dim));
      opacity: 0;
      transition: opacity 0.25s;
    }
    .sol-card:hover {
      border-color: rgba(201,168,76,0.3);
      box-shadow: 0 12px 40px rgba(10,10,15,0.1);
      transform: translateY(-3px);
    }
    .sol-card:hover::before { opacity: 1; }

    .sol-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: var(--gold-pale);
      border: 1px solid rgba(201,168,76,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      margin-bottom: 22px;
    }
    .sol-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--black);
      margin-bottom: 10px;
    }
    .sol-text {
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--muted);
    }
    .sol-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 20px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold-dim);
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .sol-link:hover { color: var(--gold); }
    .sol-link::after { content: '→'; transition: transform 0.2s; }
    .sol-link:hover::after { transform: translateX(3px); }

    /* ── DEFENSE SECTION ─────────────────────── */
    .defense-section {
      background: var(--black);
      color: #fff;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .defense-section .section-title { color: #fff; }
    .defense-section .section-body { color: rgba(255,255,255,0.5); }

    .defense-points {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 36px;
    }
    .defense-point {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 20px;
      border-radius: 12px;
      border: 1px solid rgba(201,168,76,0.12);
      background: rgba(255,255,255,0.03);
      transition: border-color 0.2s, background 0.2s;
    }
    .defense-point:hover { border-color: rgba(201,168,76,0.28); background: rgba(201,168,76,0.05); }
    .defense-point .dp-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 6px;
    }
    .defense-point span { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); font-weight: 400; }

    .defense-visual {
      background: var(--navy);
      border-radius: 20px;
      aspect-ratio: 3/4;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(201,168,76,0.15);
    }
    .defense-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(201,168,76,0.08) 0%, transparent 70%);
    }
    .defense-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 36px;
      background: var(--gold);
      color: var(--black);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 13px 26px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .defense-cta-btn:hover { background: #d9b85a; transform: translateY(-2px); }

    /* ── SECTORS ─────────────────────────────── */
    .sectors-section { background: #fff; }
    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 16px;
      margin-top: 56px;
    }
    .sector-card {
      background: var(--cream);
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 14px;
      padding: 28px 24px;
      text-align: center;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .sector-card:hover {
      border-color: rgba(201,168,76,0.35);
      box-shadow: 0 8px 28px rgba(10,10,15,0.08);
      transform: translateY(-3px);
    }
    .sector-icon { font-size: 32px; margin-bottom: 16px; display: block; }
    .sector-name {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }
    .sector-desc { font-size: 13px; line-height: 1.6; color: var(--muted); }

    /* ── CUSTOMIZATION ───────────────────────── */
    .custom-section {
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .custom-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 8px;
    }
    .custom-feat {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 16px;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 10px;
      transition: border-color 0.2s;
    }
    .custom-feat:hover { border-color: rgba(201,168,76,0.3); }
    .custom-feat .cf-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
    .custom-feat .cf-text { font-size: 13px; font-weight: 500; color: var(--black); line-height: 1.4; }

    .custom-visual {
      background: var(--black);
      border-radius: 20px;
      aspect-ratio: 1;
      position: relative;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(10,10,15,0.2);
    }
    .custom-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
    }
    /* Blueprint grid */
    .blueprint-grid {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(5,1fr);
      grid-template-rows: repeat(5,1fr);
    }
    .bp-line-h {
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: rgba(201,168,76,0.12);
    }
    .bp-line-v {
      position: absolute;
      top: 0; bottom: 0;
      width: 1px;
      background: rgba(201,168,76,0.12);
    }
    .custom-visual .cv-label {
      position: absolute;
      bottom: 24px; left: 24px;
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      color: rgba(201,168,76,0.6);
      letter-spacing: -0.03em;
      z-index: 1;
    }

    /* ── PROJECTS ────────────────────────────── */
    .projects-section { background: var(--black); }
    .projects-section .section-title { color: #fff; }
    .projects-section .section-body { color: rgba(255,255,255,0.45); }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 16px;
      margin-top: 56px;
    }
    .project-card {
      background: var(--navy);
      border: 1px solid rgba(201,168,76,0.1);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
    }
    .project-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
    .project-thumb {
      aspect-ratio: 4/3;
      background: rgba(255,255,255,0.04);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .project-thumb .pt-icon { font-size: 48px; opacity: 0.25; }
    .project-thumb::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(10,10,15,0.8), transparent);
    }
    .project-body { padding: 22px 24px; }
    .project-tag {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .project-name {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .project-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.45); }

    .projects-cta-wrap { text-align: center; margin-top: 48px; }

    /* ── GLOBAL OPS ──────────────────────────── */
    .global-section {
      background: #fff;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .global-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }
    .global-hl {
      padding: 24px;
      background: var(--cream);
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 12px;
      text-align: center;
    }
    .global-hl .gh-icon { font-size: 24px; margin-bottom: 10px; display: block; }
    .global-hl .gh-label { font-size: 13px; font-weight: 600; color: var(--black); }

    .global-map {
      background: var(--cream);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 20px;
      aspect-ratio: 4/3;
      overflow: hidden;
      position: relative;
      box-shadow: 0 20px 60px rgba(10,10,15,0.1);
    }
    /* Stylized world map dots */
    .world-dots {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .world-dots svg { width: 90%; height: 90%; opacity: 0.25; }

    /* ── FINAL CTA ───────────────────────────── */
    .final-cta {
      background: var(--black);
      text-align: center;
      padding: 120px 80px;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.09) 0%, transparent 70%);
    }
    .final-cta .section-title { color: #fff; font-size: clamp(32px, 4vw, 52px); }
    .final-cta .section-body {
      color: rgba(255,255,255,0.45);
      margin: 20px auto 40px;
      text-align: center;
      max-width: 480px;
    }
    .final-cta .section-eyebrow { justify-content: center; }
    .final-cta .section-eyebrow::before { display: none; }

    /* ── FOOTER ──────────────────────────────── */
    footer {
      background: #05050A;
      padding: 60px 80px 36px;
      border-top: 1px solid rgba(201,168,76,0.1);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(1.2); }
    .footer-brand p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.35); }

    .footer-col h4 {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 13.5px;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.25); }
    .footer-bottom a:hover { color: rgba(255,255,255,0.35); }

    .footer-contatti {
      font-size:15px;
      font-weight:500;
      color:var(--black);
      text-decoration: none;
    }

      .footer-contatti:hover {
      text-decoration: underline;
    }

    .footer-text-bottom{ font-size: 12px; color: rgba(255,255,255,0.25); }
    .footer-text-bottom a:hover{ font-size: 12px; color: rgba(255,255,255,0.35); }

    /* ── CONTACT FORM ────────────────────────── */
    .contact-section {
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .contact-form {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 20px;
      padding: 40px;
    }
    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      font-family: var(--font-body);
      font-size: 14.5px;
      color: var(--black);
      background: var(--cream);
      border: 1.5px solid rgba(0,0,0,0.1);
      border-radius: 10px;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit {
      width: 100%;
      background: var(--black);
      color: #fff;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      padding: 15px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      letter-spacing: 0.04em;
      transition: background 0.2s, transform 0.15s;
      margin-top: 8px;
    }
    .form-submit:hover { background: #222234; transform: translateY(-1px); }
    .form-submit:active { transform: translateY(0); }

    .form-note {
      font-size: 12px;
      color: var(--muted);
      margin-top: 12px;
      text-align: center;
    }
    .form-success {
      display: none;
      padding: 20px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 10px;
      color: var(--gold-dim);
      font-size: 14px;
      font-weight: 500;
      text-align: center;
      margin-top: 16px;
    }
    .form-error {
      display: none;
      padding: 16px;
      background: rgba(239,68,68,0.08);
      border: 1px solid rgba(239,68,68,0.2);
      border-radius: 10px;
      color: #dc2626;
      font-size: 13px;
      margin-top: 12px;
    }

    /* ── MOBILE NAV ──────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      margin-left: auto;
    }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 1024px) {
      section { padding: 80px 40px; }
      header {
        position: relative; /* Ritorna nel flusso normale dei blocchi */
        top: auto;
      }
      .trust-bar { padding: 24px 40px; flex-direction: column; gap: 16px; }
      .trust-intro { margin-right: 0; padding-right: 0; border-right: none; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .lang-switcher-fuori-nav {display: none; /* Nascondo il div in modalità mobile */}
      .lang-switcher { display: inline-flex; margin-left: auto;}
    }

    @media (max-width: 768px) {
      header {
        position: relative;
        top: auto;
      }
      nav { display: none; }
      .lang-switcher-fuori-nav {display: none; }
      nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(245,244,240,0.98);
        padding: 20px;
        border-bottom: 1px solid var(--border);
        gap: 4px;
        z-index: 99;
      }
      .lang-switcher { display: inline-flex; margin-left: auto;}
      .hamburger { display: flex; }
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 60px 24px 40px; }
      .hero-right { display: none; }
      .solutions-grid { grid-template-columns: 1fr; gap: 12px; }
      .sol-card { padding: 20px 16px; }
      .sol-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 14px;
      }
      .sol-title { font-size: 15px; letter-spacing: -0.01em; }
      .sol-text { font-size: 12.5px; line-height: 1.55; }
      .sol-link { font-size: 12px; margin-top: 14px; }
      .sectors-grid { grid-template-columns: 1fr; }
      .defense-section { grid-template-columns: 1fr; }
      .defense-visual { display: none; }
      .value-section { grid-template-columns: 1fr; }
      .custom-section { grid-template-columns: 1fr; }
      .global-section { grid-template-columns: 1fr; }
      .projects-grid { grid-template-columns: 1fr; }
      .contact-section { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      section { padding: 64px 24px; }
      .trust-bar { padding: 20px 24px; }
      .trust-items { flex-wrap: wrap; gap: 20px; justify-content: center; }
      .custom-features { grid-template-columns: 1fr; }
      .global-highlights { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      footer { padding: 48px 24px 24px; }
      .final-cta { padding: 80px 24px; }
    }

    /* ── SCROLL ANIMATIONS ───────────────────── */
    [data-reveal] {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    [data-reveal].visible {
      opacity: 1;
      transform: translateY(0);
    }
    [data-reveal-delay="1"] { transition-delay: 0.1s; }
    [data-reveal-delay="2"] { transition-delay: 0.2s; }
    [data-reveal-delay="3"] { transition-delay: 0.3s; }
    [data-reveal-delay="4"] { transition-delay: 0.4s; }

    /* WHATSAPP WIDGET */
    .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-button:active {
            transform: scale(0.95);
        }

        .whatsapp-icon {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            padding: 10px 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            font-size: 14px;
            color: #333;
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid white;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

        .whatsapp-widget:hover .whatsapp-tooltip {
            opacity: 1;
        }

        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-button {
            animation: pulse 2s infinite;
        }

        .whatsapp-button:hover {
            animation: none;
        }