/* ============================================================
   Wildcard Communications — shared stylesheet
   Extends Wildcard tokens, adds wComm purple + Platinum accent.
   ============================================================ */
@import url("assets/wildcard-tokens.css");

:root {
  /* ---- wComm sub-product accent (Wildix purple/violet) ---- */
  --wcomm-purple:      #4B2D83;
  --wcomm-purple-deep: #2F1A5C;
  --wcomm-purple-soft: #7A5BC0;
  --wcomm-purple-tint: #EEEAF7;

  /* ---- Platinum / Premium certification accent ---- */
  --wcomm-platinum-1:  #E8E8EC;
  --wcomm-platinum-2:  #B9BBC4;
  --wcomm-platinum-3:  #7C7F8A;
  --wcomm-platinum-ink:#3B3D45;

  /* ---- Warm CTA accent (per spec: arancio #F5A623) ---- */
  --wcomm-orange:      #F5A623;
  --wcomm-orange-deep: #D98A0E;

  /* ---- Glows ---- */
  --shadow-purple:
    0 0 0 1px rgba(75,45,131,.35),
    0 0 32px -6px rgba(75,45,131,.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--wc-ink-on-light);
  background: var(--wc-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ---------- LAYOUT --------- */
.wrap     { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 1040px; margin: 0 auto; padding: 0 32px; }
section   { padding: var(--section-pad-y) 0; position: relative; overflow: hidden; }
.surface-cream  { background: var(--wc-cream); color: var(--wc-ink-on-light); }
.surface-white  { background: #fff; color: var(--wc-ink-on-light); }
.surface-navy   { background: var(--wc-navy); color: var(--wc-ink-on-blue); }
.surface-deep   { background: var(--wc-navy-deep); color: var(--wc-ink-on-blue); }
.surface-purple {
  background: linear-gradient(135deg, var(--wcomm-purple), var(--wcomm-purple-deep));
  color: #fff;
}

/* ---------- WATERMARK --------- */
.watermark {
  position: absolute; inset: 0; pointer-events: none; opacity: .14;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'><rect x='22.5' y='22.5' width='45' height='45' transform='rotate(45 45 45)' fill='none' stroke='%23ffffff' stroke-width='1'/></svg>");
  background-repeat: repeat;
  background-size: 90px 90px;
}
.watermark.subtle { opacity: .08; }
.surface-cream .watermark {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'><rect x='22.5' y='22.5' width='45' height='45' transform='rotate(45 45 45)' fill='none' stroke='%23102B53' stroke-width='1'/></svg>");
  opacity: .055;
}

/* ============================================================
   NAVIGATION (floating pill — Wildcard chrome + wComm sub-brand)
   ============================================================ */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 32px 0;
  pointer-events: none;
}
.nav-wrap > * { pointer-events: auto; }
.nav {
  max-width: 1240px; margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  padding: 10px 12px 10px 24px;
  display: flex; align-items: center; gap: 28px;
  box-shadow: var(--shadow-nav);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.nav-brand img { height: 26px; }
.nav-brand .pipe {
  width: 1px; height: 22px;
  background: var(--wc-rule-light);
}
.nav-brand .sub {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em;
  font-size: 15px;
  color: var(--wcomm-purple);
  line-height: 1;
}
.nav-brand .sub .w { opacity: .55; }
.nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; align-items: center; }
.nav-links a {
  font-size: 13.5px; color: var(--wc-ink-on-light); text-decoration: none;
  font-weight: 500; position: relative; padding: 6px 0;
}
.nav-links a.active { font-weight: 700; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--wcomm-purple); border-radius: 1px;
}
.nav-links a:hover { opacity: .7; }
.nav-cta {
  background: var(--wcomm-orange); color: #1A1A1A; border: 0;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px -10px rgba(245,166,35,.55);
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .9; }
.nav-cta:active { transform: scale(.98); }

@media (max-width: 900px){
  .nav { padding: 8px 8px 8px 18px; gap: 10px; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
}

/* ============================================================
   PLATINUM BADGE — premium metallic look
   ============================================================ */
.platinum-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  background:
    linear-gradient(135deg,
      rgba(232,232,236,.22) 0%,
      rgba(185,187,196,.10) 40%,
      rgba(124,127,138,.18) 100%);
  border: 1px solid rgba(232,232,236,.55);
  color: var(--wcomm-platinum-1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 8px 24px -10px rgba(0,0,0,.5);
  position: relative;
  isolation: isolate;
}
.platinum-badge::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg,
    transparent 35%,
    rgba(255,255,255,.18) 50%,
    transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.platinum-badge .star {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wcomm-platinum-1), var(--wcomm-platinum-2) 60%, var(--wcomm-platinum-3));
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 2px 6px rgba(0,0,0,.35);
  color: var(--wcomm-platinum-ink);
  flex-shrink: 0;
}
.platinum-badge .lvl {
  font-weight: 800; color: #fff;
}
.platinum-badge .lvl .pt {
  background: linear-gradient(135deg, var(--wcomm-platinum-1), var(--wcomm-platinum-2));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 900;
}

/* on light surfaces */
.platinum-badge.on-light {
  background:
    linear-gradient(135deg, #FAFAFC 0%, #ECEDF1 50%, #C9CBD2 100%);
  border-color: rgba(124,127,138,.35);
  color: var(--wcomm-platinum-ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 10px 28px -12px rgba(124,127,138,.55);
}
.platinum-badge.on-light .lvl { color: var(--wcomm-platinum-ink); }
.platinum-badge.on-light .lvl .pt {
  background: linear-gradient(135deg, var(--wcomm-platinum-3), var(--wcomm-platinum-ink));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ============================================================
   TYPE PRESETS
   ============================================================ */
.display-hero {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.98;
  font-size: clamp(44px, 6vw, 84px); margin: 0;
}
.display-hero .accent { color: var(--wcomm-purple-soft); }
.display-hero .accent-orange { color: var(--wcomm-orange); }

h2.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 40px); letter-spacing: -.01em; line-height: 1.12;
  margin: 0; color: inherit;
  display: inline-flex; gap: 4px; align-items: baseline;
}
h2.section-title .star { color: var(--wcomm-purple); font-weight: 500; }
.surface-purple h2.section-title .star,
.surface-navy h2.section-title .star,
.surface-deep h2.section-title .star { color: var(--wcomm-platinum-1); }

.eyebrow {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--wc-muted-light); font-weight: 600; margin: 0 0 14px;
  display: inline-block;
}
.surface-purple .eyebrow,
.surface-navy .eyebrow,
.surface-deep .eyebrow { color: rgba(255,255,255,.7); }

.aside-line {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--wc-muted-light); font-weight: 500; margin: 8px 0 0;
}
.aside-line .star { color: var(--wcomm-purple); }
.surface-purple .aside-line, .surface-navy .aside-line, .surface-deep .aside-line {
  color: rgba(255,255,255,.7);
}
.surface-purple .aside-line .star,
.surface-navy .aside-line .star,
.surface-deep .aside-line .star { color: var(--wcomm-platinum-1); }

.lede { font-size: 17px; line-height: 1.6; margin: 0; max-width: 60ch; }
.surface-cream .lede { color: var(--wc-muted-light); }
.surface-purple .lede, .surface-navy .lede, .surface-deep .lede { color: rgba(255,255,255,.85); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { font-family: inherit; font-weight: 700; font-size: 14px; border: 0;
       padding: 14px 26px; border-radius: 999px; line-height: 1; cursor: pointer;
       display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
       transition: opacity .14s, transform .14s, box-shadow .14s;
       letter-spacing: .02em;}
.btn-orange { background: var(--wcomm-orange); color: #1A1A1A;
              box-shadow: 0 10px 28px -10px rgba(245,166,35,.6);}
.btn-orange:hover { background: var(--wcomm-orange-deep); }
.btn-purple { background: var(--wcomm-purple); color: #fff; }
.btn-purple:hover { background: var(--wcomm-purple-deep); }
.btn-navy   { background: var(--wc-navy-deep); color: #fff; }
.btn-ghost  { background: transparent; color: inherit; border: 1.5px solid currentColor;}
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4);}
.btn-ghost-light:hover { background: rgba(255,255,255,.08); }
.btn:hover { opacity: .92; }
.btn:active { transform: scale(.98); }
.btn .arrow { font-size: 18px; line-height: 1; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--wcomm-purple);
  text-decoration: none; font-weight: 700; font-size: 14px;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .14s, gap .14s;
}
.link-arrow:hover { gap: 10px; opacity: .8; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.home-hero {
  padding: 130px 0 110px;
  position: relative;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-hero .platinum-badge { align-self: center; margin: 0 auto 8px; }
.home-hero h1 {
  max-width: 22ch; margin: 0 auto;
}
.home-hero .sub {
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 62ch; margin: 0 auto;
}
.home-hero .cta-row {
  display: inline-flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}

/* hero diamond mark (wComm wordmark above the H1, like wsafe page) */
.wcomm-mark {
  width: 96px; height: 80px; position: relative; margin: 0 auto;
}
.wcomm-mark::before, .wcomm-mark::after {
  content: ""; position: absolute; width: 50px; height: 50px;
  transform: rotate(45deg); border-radius: 5px;
}
.wcomm-mark::before { background: var(--wcomm-purple); left: 0; top: 15px; }
.wcomm-mark::after  { background: var(--wcomm-purple-deep); right: 0; top: 15px; }
.wcomm-wordmark {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
  font-size: 36px; margin: 4px 0 0; line-height: 1;
  color: #fff;
  text-align: center;
}
.wcomm-wordmark .w { opacity: .45; }
.wcomm-wordmark .small {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .24em;
  color: rgba(255,255,255,.65);
  margin-top: 10px;
}

/* ============================================================
   PERCHÉ SCEGLIERCI — 3 horizontal cards
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--wc-rule-light);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.why-card.platinum {
  background:
    linear-gradient(170deg, #FAFAFC 0%, #ECEDF1 100%);
  border-color: rgba(124,127,138,.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 18px 36px -22px rgba(124,127,138,.45);
}
.why-card .num {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  font-size: 11px; letter-spacing: .2em;
  color: var(--wc-muted-light);
}
.why-card.platinum .num { color: var(--wcomm-platinum-ink); }
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: -.01em;
  font-size: 22px; margin: 0; line-height: 1.15;
  color: var(--wc-ink-on-light);
}
.why-card.platinum h3 .platinum-word {
  background: linear-gradient(135deg, var(--wcomm-platinum-3), var(--wcomm-platinum-ink));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.why-card p {
  font-size: 14px; line-height: 1.55;
  color: var(--wc-muted-light);
  margin: 0;
}
.why-card .icon-wrap {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--wcomm-purple-tint);
  color: var(--wcomm-purple);
}
.why-card.platinum .icon-wrap {
  background: linear-gradient(135deg, var(--wcomm-platinum-1), var(--wcomm-platinum-2));
  color: var(--wcomm-platinum-ink);
  border: 1px solid rgba(124,127,138,.3);
}

/* ============================================================
   SERVIZI GRID — wsafe.it style: big outline icon + bold caps title
   ============================================================ */
.servizi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--wc-rule-light);
  border-left: 1px solid var(--wc-rule-light);
}
.serv-card {
  padding: 56px 36px 48px;
  display: flex; flex-direction: column; gap: 18px;
  text-align: left;
  background: #fff;
  border-right: 1px solid var(--wc-rule-light);
  border-bottom: 1px solid var(--wc-rule-light);
  text-decoration: none;
  color: var(--wc-ink-on-light);
  transition: background var(--dur-base) var(--ease-out);
  position: relative;
}
.serv-card:hover { background: var(--wcomm-purple-tint); }
.serv-card:hover .arrow-pill { color: var(--wcomm-purple); transform: translateX(4px); }
.serv-card .ico {
  width: 64px; height: 64px;
  color: var(--wcomm-purple);
}
.serv-card .ico svg { width: 100%; height: 100%; }
.serv-card h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.005em;
  font-size: 22px; line-height: 1.1;
  margin: 0;
  color: var(--wc-ink-on-light);
}
.serv-card p {
  font-size: 14px; line-height: 1.6;
  color: var(--wc-muted-light);
  margin: 0;
  flex-grow: 1;
}
.serv-card .arrow-pill {
  margin-top: 8px;
  font-size: 22px; line-height: 1;
  color: var(--wc-muted-light);
  transition: color .14s, transform .14s;
}

/* ============================================================
   FINAL CTA banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(95deg, var(--wcomm-purple-deep), var(--wcomm-purple));
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'><rect x='22.5' y='22.5' width='45' height='45' transform='rotate(45 45 45)' fill='none' stroke='%23ffffff' stroke-width='1'/></svg>");
  opacity: .12; pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -.01em; margin: 0;
  max-width: 22ch;
  line-height: 1.15;
}
.cta-banner p {
  margin: 8px 0 0;
  font-size: 15px;
  color: rgba(255,255,255,.78);
  max-width: 50ch;
}

/* ============================================================
   PRODOTTI — alternating 4 blocks
   ============================================================ */
.prod-intro {
  text-align: center;
  max-width: 64ch; margin: 0 auto;
}
.prod-intro .lede { margin: 18px auto 0; }

.prod-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--wc-rule-light);
}
.prod-block:last-child { border-bottom: 0; }
.prod-block.reverse .prod-visual { order: 2; }
.prod-block .prod-num {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  font-size: 13px; letter-spacing: .2em;
  color: var(--wcomm-purple);
}
.prod-block h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.04;
  margin: 12px 0 18px;
  color: var(--wc-ink-on-light);
}
.prod-block .desc {
  font-size: 16px; line-height: 1.6;
  color: var(--wc-muted-light);
  margin: 0 0 22px;
  max-width: 48ch;
}
.prod-block ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.prod-block ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; line-height: 1.5;
  color: var(--wc-ink-on-light);
}
.prod-block ul li::before {
  content: ""; flex-shrink: 0;
  width: 10px; height: 10px;
  background: var(--wcomm-purple);
  transform: rotate(45deg);
  margin-top: 7px;
}

/* product visual — gradient surface w/ UI preview placeholder */
.prod-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--wcomm-purple), var(--wcomm-purple-deep));
  position: relative; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(75,45,131,.5);
  display: grid; place-items: center;
}
.prod-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'><rect x='22.5' y='22.5' width='45' height='45' transform='rotate(45 45 45)' fill='none' stroke='%23ffffff' stroke-width='1'/></svg>");
  opacity: .14;
}
.prod-visual .inner {
  position: relative; z-index: 1;
  width: 76%; aspect-ratio: 16/10;
  background: #fff; border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
  overflow: hidden;
}

/* per-block tint variants */
.prod-block.tone-2 .prod-visual { background: linear-gradient(135deg, #5C3DA0, #3A2570); }
.prod-block.tone-3 .prod-visual { background: linear-gradient(135deg, #6F4EB8, #2F1A5C); }
.prod-block.tone-4 .prod-visual { background: linear-gradient(135deg, #4B2D83, #1A0F36); }

/* ============================================================
   PERCHÉ NOI — chi siamo + certificazioni + timeline + casi
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  align-items: flex-start;
}
.about-grid .col-left h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 40px); letter-spacing: -.01em;
  line-height: 1.1; margin: 0 0 18px;
}
.about-grid .col-left .lede { margin-bottom: 16px; }
.about-grid .stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 32px;
}
.about-grid .stat {
  border-top: 1px solid var(--wc-rule-light);
  padding-top: 14px;
}
.about-grid .stat .num {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  font-size: 36px; color: var(--wcomm-purple);
  line-height: 1; margin-bottom: 6px;
}
.about-grid .stat .lbl {
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--wc-muted-light);
}

.cert-card {
  background:
    linear-gradient(165deg, #FAFAFC 0%, #ECEDF1 100%);
  border: 1px solid rgba(124,127,138,.3);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 18px 36px -22px rgba(124,127,138,.45);
}
.cert-card .badge-spot {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(124,127,138,.25);
  margin-bottom: 22px;
}
.cert-card .badge-spot .award {
  width: 64px; height: 64px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #FFFFFF 0%, var(--wcomm-platinum-1) 35%, var(--wcomm-platinum-2) 70%, var(--wcomm-platinum-3) 100%);
  display: grid; place-items: center;
  color: var(--wcomm-platinum-ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 6px 18px -6px rgba(124,127,138,.55);
  flex-shrink: 0;
}
.cert-card .badge-spot .meta .lvl {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wcomm-platinum-ink);
}
.cert-card .badge-spot .meta .who {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  font-size: 24px; line-height: 1;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--wcomm-platinum-3), var(--wcomm-platinum-ink));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cert-list { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px; }
.cert-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--wcomm-platinum-ink);
}
.cert-list li .dot {
  width: 8px; height: 8px; border-radius: 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--wcomm-platinum-2), var(--wcomm-platinum-3));
  flex-shrink: 0;
}

/* timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; left: 12.5%; right: 12.5%;
  top: 27px; height: 2px;
  background:
    repeating-linear-gradient(to right,
      var(--wcomm-purple-soft) 0 8px,
      transparent 8px 14px);
  z-index: 0;
}
.tl-step {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 18px;
}
.tl-step .dot {
  width: 54px; height: 54px; border-radius: 999px;
  background: #fff;
  border: 2px solid var(--wcomm-purple);
  color: var(--wcomm-purple);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  font-size: 18px;
}
.tl-step.active .dot {
  background: var(--wcomm-purple); color: #fff;
}
.tl-step h4 {
  font-family: var(--font-display); font-weight: 800;
  font-style: italic; text-transform: uppercase; letter-spacing: -.005em;
  font-size: 16px; margin: 0 0 8px;
  color: var(--wc-ink-on-light);
}
.tl-step p {
  font-size: 13px; line-height: 1.5; color: var(--wc-muted-light);
  margin: 0;
}

/* casi d'uso cards */
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--wc-rule-light);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.case-card .sector {
  display: inline-flex; align-self: flex-start;
  background: var(--wcomm-purple-tint);
  color: var(--wcomm-purple);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
}
.case-card h4 {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: -.005em;
  font-size: 18px; margin: 0; line-height: 1.2;
  color: var(--wc-ink-on-light);
}
.case-card .row {
  font-size: 13.5px; line-height: 1.55;
}
.case-card .row .k {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--wcomm-purple); font-weight: 700;
  display: block; margin-bottom: 4px;
}
.case-card .row .v { color: var(--wc-muted-light); }
.case-card .row.solution .v { color: var(--wc-ink-on-light); font-weight: 500; }

/* ============================================================
   CONTATTI — form + sidebar + map
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--wc-rule-light);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--wc-muted-light); font-weight: 600;
}
.contact-field input,
.contact-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--wc-rule-light);
  color: var(--wc-ink-on-light);
  padding: 8px 0; font-size: 15px;
  font-family: inherit; outline: none;
  transition: border-color .15s;
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--wcomm-purple); }
.contact-field textarea { min-height: 90px; resize: vertical; }
.gdpr {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.5; color: var(--wc-muted-light);
}
.gdpr input { margin-top: 3px; accent-color: var(--wcomm-purple); }
.contact-form .submit {
  background: var(--wcomm-orange); color: #1A1A1A; border: 0;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  cursor: pointer;
  justify-self: flex-start;
  box-shadow: 0 10px 28px -10px rgba(245,166,35,.6);
}
.contact-form .submit:hover { background: var(--wcomm-orange-deep); }

.contact-side {
  display: flex; flex-direction: column; gap: 24px;
}
.contact-side .info-card {
  background:
    linear-gradient(170deg, var(--wcomm-purple), var(--wcomm-purple-deep));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative; overflow: hidden;
}
.contact-side .info-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'><rect x='22.5' y='22.5' width='45' height='45' transform='rotate(45 45 45)' fill='none' stroke='%23ffffff' stroke-width='1'/></svg>");
  opacity: .12;
}
.contact-side .info-card > * { position: relative; z-index: 1; }
.contact-side .info-card h3 {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: -.01em;
  font-size: 20px; margin: 0 0 22px;
}
.contact-side .info-row {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 13.5px; line-height: 1.45;
}
.contact-side .info-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-side .info-row .k {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 700;
  display: block; margin-bottom: 4px;
}
.contact-side .info-row .v {
  color: #fff; font-weight: 500;
}
.contact-side .info-row a { text-decoration: none; color: inherit; }
.contact-side .info-row a:hover { color: var(--wcomm-platinum-1); }

.contact-side .platinum-note {
  background: linear-gradient(165deg, #FAFAFC 0%, #ECEDF1 100%);
  border: 1px solid rgba(124,127,138,.3);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  display: flex; gap: 16px;
  align-items: flex-start;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 12px 28px -18px rgba(124,127,138,.45);
}
.contact-side .platinum-note .award-mini {
  width: 36px; height: 36px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #FFFFFF 0%, var(--wcomm-platinum-1) 35%, var(--wcomm-platinum-2) 70%, var(--wcomm-platinum-3) 100%);
  flex-shrink: 0;
  display: grid; place-items: center; color: var(--wcomm-platinum-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.contact-side .platinum-note p {
  margin: 0; font-size: 13.5px; line-height: 1.5;
  color: var(--wcomm-platinum-ink);
}
.contact-side .platinum-note p b {
  color: var(--wc-ink-on-light);
}

.map-placeholder {
  margin-top: 24px;
  height: 280px; border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, #E8EBF2 0%, #DFE3EC 100%);
  position: relative; overflow: hidden;
  border: 1px solid var(--wc-rule-light);
}
.map-placeholder svg { width: 100%; height: 100%; }
.map-placeholder .pin {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.map-placeholder .pin .marker {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--wcomm-purple);
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(75,45,131,.45);
}
.map-placeholder .pin .lbl {
  background: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  color: var(--wcomm-purple);
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   PAGE HEADER (intro band for sub-pages)
   ============================================================ */
.page-head {
  padding: 110px 0 80px;
  text-align: center;
  position: relative;
}
.page-head h1 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  margin: 0;
  max-width: 18ch; margin-left: auto; margin-right: auto;
}
.page-head h1 .accent { color: var(--wcomm-purple-soft); }
.page-head .crumb {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  margin-bottom: 22px;
}
.page-head .crumb .sep { margin: 0 8px; opacity: .5; }
.page-head .lede {
  margin: 22px auto 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  max-width: 60ch;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--wc-navy-deep);
  color: #fff;
  padding: 56px 0 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.foot-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
.foot-brand .lockup {
  display: flex; align-items: center; gap: 12px;
}
.foot-brand .lockup img { width: 140px; height: auto; }
.foot-brand .lockup .pipe { width: 1px; height: 22px; background: rgba(255,255,255,.2); }
.foot-brand .lockup .sub {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
  font-size: 14px;
  color: var(--wcomm-purple-soft);
  line-height: 1;
}
.foot-brand .lockup .sub .w { opacity: .55; }
.foot-brand .piva {
  font-family: var(--font-mono); font-size: 9.5px;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em; margin-top: 12px;
}
.foot-brand .platinum-badge {
  margin-top: 18px;
  padding: 8px 14px 8px 10px;
  font-size: 10.5px;
  letter-spacing: .16em;
}
.foot-brand .platinum-badge .star { width: 18px; height: 18px; }
.foot-col .h {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600;
  margin-bottom: 10px;
}
.foot-col .line { font-size: 12.5px; line-height: 1.6; }
.foot-col .line.dim { color: rgba(255,255,255,.7); }
.foot-col .line a { text-decoration: none; color: inherit; }
.foot-col .line a:hover { color: var(--wcomm-purple-soft); }

.foot-bottom {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
}
.foot-bottom a { text-decoration: none; color: inherit; }
.foot-bottom a:hover { color: rgba(255,255,255,.9); }
.foot-bottom .tag {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  letter-spacing: .04em; color: var(--wcomm-purple-soft);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .why-grid,
  .servizi-grid,
  .cases-grid { grid-template-columns: 1fr; }
  .servizi-grid { border: 1px solid var(--wc-rule-light); border-radius: var(--r-lg); overflow: hidden; }
  .prod-block, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .prod-block.reverse .prod-visual { order: 0; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 36px 28px; }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .home-hero { padding: 90px 0 70px; }
  .contact-form { padding: 28px 22px; grid-template-columns: 1fr; }
}
