  :root {
    --brand: #0099ff;
    --brand-dark: #0077cc;
    --brand-light: #e6f5ff;
    --brand-soft: rgba(0,153,255,0.08);
    --ink: #0a1a2e;
    --ink-soft: #1f2937;
    --muted: #5b6b80;
    --line: #e3e8f0;
    --bg: #ffffff;
    --bg-soft: #f6f9fc;
    --bg-dark: #0a1a2e;
    --danger: #e63946;
    --danger-dark: #c92a36;
    --danger-light: #fdecee;
    --success: #22c55e;
    --wa: #25d366;
    --fb: #1877f2;
    --ig: #e4405f;
    --li: #0a66c2;
    --tg: #26a5e4;
    --rd: #ff4500;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(10,26,46,0.04), 0 1px 3px rgba(10,26,46,0.06);
    --shadow-md: 0 10px 24px -12px rgba(10,26,46,0.18);
    --shadow-lg: 0 20px 50px -20px rgba(10,26,46,0.22);
    --font-sans: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }
  img, svg { display: block; max-width: 100%; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
  h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
  h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
  h3 { font-size: 1.15rem; }
  p { color: var(--ink-soft); }

  /* ========= Utility bar ========= */
  .utility-bar {
    background: var(--bg-dark);
    color: white;
    font-size: 0.82rem;
    padding: 8px 0;
  }
  .utility-bar .container {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    flex-wrap: wrap;
  }
  .utility-left, .utility-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .utility-bar a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 6px; transition: color 0.15s; }
  .utility-bar a:hover { color: var(--brand); }
  .utility-bar .ico-mini { width: 14px; height: 14px; }
  .lang-switch { display: inline-flex; gap: 2px; padding: 2px; background: rgba(255,255,255,0.08); border-radius: 999px; }
  .lang-btn {
    background: transparent; border: none; color: rgba(255,255,255,0.7);
    padding: 4px 10px; font-size: 0.75rem; font-weight: 700;
    border-radius: 999px; cursor: pointer; letter-spacing: 0.04em;
    transition: all 0.15s;
  }
  .lang-btn:hover { color: white; }
  .lang-btn.active { background: var(--brand); color: white; }

  /* ========= Header ========= */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.94);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--line);
  }
  header .container {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; padding-bottom: 14px;
  }
  .logo {
    font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .logo .dot { width: 8px; height: 8px; background: var(--brand); border-radius: 50%; }
  .logo .ai { color: var(--brand); }
  nav.primary { display: flex; align-items: center; gap: 24px; }
  nav.primary a {
    font-size: 0.92rem; font-weight: 600; color: var(--ink-soft);
    transition: color 0.15s;
  }
  nav.primary a:hover { color: var(--brand); }
  .header-cta { display: flex; align-items: center; gap: 10px; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.92rem; border: 1px solid transparent;
    cursor: pointer; transition: all 0.15s; white-space: nowrap;
  }
  .btn-primary { background: var(--brand); color: white; }
  .btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .btn-ghost { background: white; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
  .btn-dark { background: var(--ink); color: white; }
  .btn-dark:hover { background: #1a2940; }
  .btn svg { width: 16px; height: 16px; }

  .hamburger {
    display: none;
    background: white; border: 1px solid var(--line);
    width: 42px; height: 42px; border-radius: 50%;
    align-items: center; justify-content: center;
    cursor: pointer; color: var(--ink);
  }
  .hamburger:hover { border-color: var(--brand); color: var(--brand); }

  @media (max-width: 900px) {
    nav.primary, .header-cta { display: none; }
    .hamburger { display: inline-flex; }
  }
  @media (max-width: 720px) {
    .utility-left { display: none; }
    .utility-bar .container { justify-content: flex-end; }
  }
  @media (max-width: 560px) {
    .utility-right { gap: 12px; font-size: 0.78rem; }
  }
  @media (max-width: 380px) {
    .utility-right a span.lbl-email { display: none; }
  }

  /* ========= Mobile drawer ========= */
  .menu-backdrop {
    position: fixed; inset: 0;
    background: rgba(10,26,46,0.45);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 80;
  }
  .menu-backdrop.open { opacity: 1; visibility: visible; }
  .mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw);
    height: 100%;
    background: white;
    box-shadow: -20px 0 50px -20px rgba(10,26,46,0.25);
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.34s;
    z-index: 90;
    display: flex; flex-direction: column;
    visibility: hidden;
    overscroll-behavior: contain;
  }
  .mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s;
  }
  .mobile-menu-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }
  .mobile-menu-close {
    background: var(--bg-soft); border: 1px solid var(--line);
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--ink);
    transition: all 0.15s;
  }
  .mobile-menu-close:hover { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }
  .mobile-menu-body { padding: 12px 24px; overflow-y: auto; flex: 1; }
  .mobile-menu-body a.nav-link {
    display: block; padding: 14px 0;
    color: var(--ink); font-weight: 600; font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
    transition: color 0.15s, padding-left 0.18s;
  }
  .mobile-menu-body a.nav-link:hover { color: var(--brand); padding-left: 6px; }
  .mobile-menu-body a.nav-link:last-of-type { border-bottom: none; }
  .mobile-menu-cta {
    padding: 20px 24px; border-top: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 10px;
    flex-shrink: 0; background: var(--bg-soft);
  }
  .mobile-menu-cta .btn { justify-content: center; padding: 13px 18px; }
  body.menu-open { overflow: hidden; }
  @media (min-width: 901px) {
    .mobile-menu, .menu-backdrop { display: none !important; }
  }

  /* ========= Hero ========= */
  .hero {
    padding: 70px 0 64px;
    background:
      radial-gradient(900px 500px at 80% 0%, var(--brand-soft), transparent 60%),
      radial-gradient(700px 400px at 0% 60%, var(--brand-soft), transparent 70%),
      var(--bg);
  }
  .hero-grid { display: grid; gap: 40px; align-items: center; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 1px solid var(--line);
    padding: 6px 14px; border-radius: 999px;
    font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
    color: var(--ink-soft); margin-bottom: 20px;
  }
  .eyebrow .pulse {
    width: 8px; height: 8px; background: var(--brand); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0,153,255,0.5);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,153,255,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(0,153,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,153,255,0); }
  }
  .hero h1 { margin-bottom: 22px; max-width: 920px; }
  .hero h1 .hl { color: var(--brand); }
  .hero-sub { font-size: 1.1rem; max-width: 720px; color: var(--ink-soft); margin-bottom: 28px; }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
  .hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: white; border: 1px solid var(--line);
    padding: 7px 14px; border-radius: 999px;
    font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  }
  .chip .check { color: var(--brand); }

  /* ========= Trust strip ========= */
  .trust-strip {
    background: var(--bg-dark);
    color: white;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .trust-grid {
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: 14px 30px;
  }
  .trust-item {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 0.9rem; font-weight: 600;
    color: rgba(255,255,255,0.9);
  }
  .trust-item svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }
  .trust-item.lead {
    background: rgba(0,153,255,0.14);
    border: 1px solid rgba(0,153,255,0.3);
    padding: 8px 16px; border-radius: 999px;
    color: white;
  }
  @media (max-width: 560px) {
    .trust-grid { gap: 12px 18px; }
    .trust-item { font-size: 0.82rem; }
  }

  /* ========= Services grid ========= */
  section.services {
    padding: 70px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
  }
  .section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
  .section-head .module-tag { display: inline-block; margin-bottom: 12px; }
  .section-head h2 { margin-bottom: 10px; }
  .section-head p { color: var(--muted); }
  .services-grid {
    display: grid; gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .service-card {
    background: white; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 26px;
    transition: all 0.2s;
  }
  .service-card:hover {
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .service-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--brand-light); color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .service-icon svg { width: 22px; height: 22px; }
  .service-card h3 { margin-bottom: 8px; }
  .service-card p { font-size: 0.95rem; color: var(--muted); }

  /* ========= Module section (problem/solution split) ========= */
  section.module {
    padding: 88px 0;
    border-top: 1px solid var(--line);
  }
  section.module.alt { background: var(--bg-soft); }
  .module-tag {
    display: inline-block;
    background: var(--brand-light); color: var(--brand);
    padding: 5px 14px; border-radius: 999px;
    font-family: var(--font-mono); font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 14px;
  }
  .module-head { max-width: 760px; margin-bottom: 36px; }
  .module-head h2 { margin-bottom: 12px; }
  .module-head p { color: var(--muted); font-size: 1.02rem; }

  .ps-grid {
    display: grid; gap: 18px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
  }
  @media (max-width: 800px) { .ps-grid { grid-template-columns: 1fr; } }

  .ps-card {
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid;
    position: relative;
  }
  .ps-card.problem {
    background: var(--danger-light);
    border-color: rgba(230,57,70,0.18);
  }
  .ps-card.solution {
    background: var(--brand-light);
    border-color: rgba(0,153,255,0.2);
  }
  .ps-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 999px;
    font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: white; margin-bottom: 16px;
  }
  .ps-card.problem .ps-badge { background: var(--danger); }
  .ps-card.solution .ps-badge { background: var(--brand); }
  .ps-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
  .ps-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .ps-card li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.96rem; color: var(--ink-soft);
  }
  .ps-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
  .ps-card.problem li svg { color: var(--danger); }
  .ps-card.solution li svg { color: var(--brand); }

  /* ========= Feature strip (blog highlight) ========= */
  .feature-strip {
    display: grid; gap: 18px;
    grid-template-columns: 1.4fr 1fr;
    margin-bottom: 32px;
  }
  @media (max-width: 800px) { .feature-strip { grid-template-columns: 1fr; } }
  .feature-card {
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--line);
    background: white;
  }
  .feature-card.featured {
    background: var(--ink);
    color: white;
    border-color: transparent;
    position: relative;
    overflow: hidden;
  }
  .feature-card.featured::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--brand-soft), transparent 70%);
    pointer-events: none;
  }
  .feature-card.featured h3 { color: white; }
  .feature-card.featured p { color: rgba(255,255,255,0.78); }
  .feature-card .ft-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--brand); color: white;
    padding: 5px 12px; border-radius: 999px;
    font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .feature-card .ft-badge.light {
    background: var(--brand-light); color: var(--brand);
  }
  .feature-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
  .feature-card p { font-size: 0.96rem; margin-bottom: 16px; }
  .feature-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .feature-card li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.92rem;
  }
  .feature-card li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--brand); }
  .feature-card.featured li svg { color: var(--brand); }

  /* ========= Frameworks list ========= */
  .frameworks {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 32px;
  }
  .frameworks .fw-head { margin-bottom: 18px; }
  .frameworks .fw-head h3 { font-size: 1.15rem; margin-bottom: 6px; }
  .frameworks .fw-head p { color: var(--muted); font-size: 0.95rem; }
  .frameworks-grid {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .fw-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    padding: 9px 16px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.84rem; font-weight: 600;
    color: var(--ink-soft);
    transition: all 0.15s;
  }
  .fw-chip:hover { border-color: var(--brand); color: var(--brand); background: white; }
  .fw-chip .fw-letter {
    width: 22px; height: 22px; border-radius: 5px;
    background: var(--ink); color: white;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 800;
    font-family: var(--font-sans);
  }

  /* ========= Channels (with icons) ========= */
  .channels {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
  }
  .channel-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: white;
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.88rem; font-weight: 600;
    color: var(--ink-soft);
    transition: all 0.15s;
  }
  .channel-tag:hover { border-color: var(--brand); }
  .channel-tag .ico-ch { width: 16px; height: 16px; flex-shrink: 0; }

  .cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

  /* ========= Portfolio carousel ========= */
  section.portfolio {
    padding: 88px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
  }
  .portfolio-head { margin-bottom: 36px; max-width: 700px; }
  .portfolio-head .module-tag { margin-bottom: 12px; }
  .portfolio-head h2 { margin-bottom: 10px; }
  .portfolio-head p { color: var(--muted); }

  .portfolio-wrap {
    position: relative;
    padding: 0;
  }
  .portfolio-track {
    display: grid; grid-auto-flow: column;
    grid-auto-columns: min(340px, 80vw);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
    -webkit-overflow-scrolling: touch;
  }
  .portfolio-track::-webkit-scrollbar { height: 6px; }
  .portfolio-track::-webkit-scrollbar-track { background: transparent; }
  .portfolio-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

  .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--line); background: white;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--ink);
    transition: all 0.15s;
    box-shadow: var(--shadow-md);
    z-index: 5;
  }
  .arrow-btn.prev { left: -22px; }
  .arrow-btn.next { right: -22px; }
  .arrow-btn:hover:not(:disabled) {
    border-color: var(--brand); color: var(--brand);
    transform: translateY(-50%) scale(1.05);
  }
  .arrow-btn:disabled { opacity: 0.35; cursor: not-allowed; }
  .arrow-btn svg { width: 18px; height: 18px; }

  .portfolio-card {
    scroll-snap-align: start;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: all 0.18s;
  }
  .portfolio-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand);
  }
  .portfolio-thumb {
    aspect-ratio: 4 / 3;
    background:
      linear-gradient(135deg, rgba(0,153,255,0.06), rgba(0,153,255,0.02)),
      repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(0,153,255,0.05) 14px, rgba(0,153,255,0.05) 15px);
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .portfolio-thumb::before, .portfolio-thumb::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom right, transparent calc(50% - 1px), rgba(0,153,255,0.35) 50%, transparent calc(50% + 1px));
  }
  .portfolio-thumb::after {
    background: linear-gradient(to top right, transparent calc(50% - 1px), rgba(0,153,255,0.35) 50%, transparent calc(50% + 1px));
  }
  .portfolio-thumb .placeholder-label {
    position: relative; z-index: 1;
    background: white; padding: 6px 12px; border-radius: 999px;
    border: 1px solid var(--line);
    font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted);
    font-weight: 600;
  }
  .portfolio-meta { padding: 18px 20px 22px; }
  .portfolio-meta .cat {
    font-size: 0.72rem; font-weight: 700; color: var(--brand);
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .portfolio-meta h3 { font-size: 1.05rem; margin: 6px 0 6px; }
  .portfolio-meta .url { font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted); }

  @media (max-width: 700px) {
    .arrow-btn { display: none; }
  }

  /* ========= Found-by strip ========= */
  .found-by {
    margin-top: 28px;
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 24px;
  }
  .found-by .fb-label {
    font-size: 0.78rem; font-weight: 700; color: var(--muted);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 18px;
  }
  .found-by-grid {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  }
  .found-by-item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.9rem; font-weight: 600;
    transition: all 0.15s;
  }
  .found-by-item:hover { border-color: var(--brand); color: var(--brand); }
  .found-by-item .fb-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--brand);
  }

  /* ========= Valori ========= */
  section.valori {
    padding: 88px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
  }
  .valori-grid {
    display: grid; gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .valori-grid .featured {
    grid-column: span 2;
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .valori-grid .featured::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, var(--brand-soft), transparent 70%);
    pointer-events: none;
  }
  @media (max-width: 800px) { .valori-grid .featured { grid-column: span 1; } }
  .valore-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.2s;
  }
  .valore-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand);
  }
  .valore-card .v-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--brand-light); color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .valore-card.featured .v-icon { background: rgba(0,153,255,0.18); color: var(--brand); }
  .valore-card .v-icon svg { width: 22px; height: 22px; }
  .valore-card h3 { margin-bottom: 10px; position: relative; }
  .valore-card.featured h3 { color: white; }
  .valore-card.featured p { color: rgba(255,255,255,0.78); position: relative; }
  .valore-card p { color: var(--muted); font-size: 0.95rem; }

  /* ========= Pricing ========= */
  section.pricing {
    padding: 88px 0;
    background: var(--ink);
    color: white;
  }
  section.pricing h2 { color: white; }
  section.pricing .section-head p { color: rgba(255,255,255,0.72); }
  section.pricing .module-tag { background: rgba(0,153,255,0.18); color: var(--brand); }
  .pricing-grid {
    display: grid; gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .price-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.2s;
  }
  .price-card:hover {
    border-color: var(--brand);
    background: rgba(255,255,255,0.06);
    transform: translateY(-3px);
  }
  .price-card .pc-name {
    font-family: var(--font-mono); font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--brand); margin-bottom: 12px;
  }
  .price-card .pc-price {
    font-size: 1.7rem; font-weight: 800; color: white;
    margin-bottom: 4px;
  }
  .price-card .pc-price .pc-unit {
    font-size: 0.92rem; font-weight: 500;
    color: rgba(255,255,255,0.6);
  }
  .price-card .pc-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem; margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .price-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .price-card li {
    display: flex; gap: 8px; align-items: flex-start;
    color: rgba(255,255,255,0.85); font-size: 0.9rem;
  }
  .price-card li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--brand); }

  /* ========= Final CTA ========= */
  section.final-cta {
    padding: 88px 0;
    background: var(--bg);
    text-align: center;
  }
  section.final-cta h2 { margin-bottom: 14px; }
  section.final-cta p { color: var(--muted); margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
  .contact-grid {
    display: grid; gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 720px; margin: 0 auto;
  }
  .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
  .contact-card {
    background: white; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px 22px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    transition: all 0.2s;
  }
  .contact-card:hover {
    border-color: var(--brand); transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .contact-card .cc-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--brand-light); color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-bottom: 6px;
  }
  .contact-card .cc-icon.wa-ic { background: rgba(37,211,102,0.12); color: var(--wa); }
  .contact-card .cc-icon svg { width: 24px; height: 24px; }
  .cc-body { width: 100%; }
  .contact-card .cc-label {
    font-size: 0.72rem; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.05em;
    font-weight: 700; margin-bottom: 4px;
  }
  .contact-card .cc-value {
    font-weight: 700; color: var(--ink);
    font-family: var(--font-mono); font-size: 0.92rem;
    white-space: nowrap; line-height: 1.3; margin-bottom: 14px;
  }
  .cc-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
  .cc-act {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 999px;
    border: 1px solid var(--line); background: var(--bg-soft);
    font-size: 0.84rem; font-weight: 700; color: var(--ink-soft);
    transition: all 0.15s;
  }
  .cc-act:hover { border-color: var(--brand); color: var(--brand); }
  .cc-act svg { width: 15px; height: 15px; }
  .cc-act.wa { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); color: #128c4a; }
  .cc-act.wa:hover { border-color: var(--wa); color: #0e7a40; }

  /* ========= Footer ========= */
  footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 24px;
    font-size: 0.9rem;
  }
  .footer-grid {
    display: grid; gap: 32px;
    grid-template-columns: 1.4fr 1fr 1fr;
    margin-bottom: 36px;
  }
  @media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
  footer h4 {
    color: white; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 14px;
  }
  footer .logo { color: white; margin-bottom: 14px; }
  footer p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 10px; }
  footer a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
  footer a:hover { color: var(--brand); }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-social { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
  .footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.15s;
  }
  .footer-social a:hover { background: var(--brand); border-color: var(--brand); color: white; }
  .footer-social svg { width: 16px; height: 16px; }
  .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: 0.82rem; color: rgba(255,255,255,0.5);
  }

  /* Channel-specific colors when used in icons */
  .ico-wa { color: var(--wa); }
  .ico-fb { color: var(--fb); }
  .ico-ig { color: var(--ig); }
  .ico-li { color: var(--li); }
  .ico-tg { color: var(--tg); }
  .ico-rd { color: var(--rd); }
  .ico-web { color: var(--brand); }
  .ico-mail { color: var(--ink-soft); }

  /* ===== FAQ accordion ===== */
  section.faq { padding: 88px 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
  .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.15s, box-shadow 0.15s; }
  .faq-item.open { border-color: var(--brand); box-shadow: var(--shadow-md); }
  .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: inherit; font-size: 1.02rem; font-weight: 700; color: var(--ink); line-height: 1.35; }
  .faq-q:hover { color: var(--brand); }
  .faq-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--brand); transition: transform 0.28s ease; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
  .faq-item.open .faq-a { max-height: 460px; }
  .faq-a-inner { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.96rem; }

  /* ===== Fixes: contact overflow ===== */
  .contact-card { min-width: 0; }
  .contact-card > div { min-width: 0; flex: 1; }
  .cc-value { word-break: break-word; overflow-wrap: anywhere; font-size: 0.82rem; line-height: 1.3; }
  @media (max-width: 380px) { .cc-value { font-size: 0.76rem; } }

  /* ===== Fixes: trust strip alignment ===== */
  .trust-grid { align-items: center; }
  .trust-item { white-space: nowrap; }
  .trust-item.lead { white-space: normal; }

  /* ===== lang switch as links ===== */
  .lang-btn { text-decoration: none; line-height: 1; }

  /* ===== monthly equivalent on annual price ===== */
  .pc-permonth { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.55); white-space: nowrap; }

  /* ===== site types (istituzionale vs e-commerce) ===== */
  .types-lead { font-size: 1.15rem; margin-bottom: 18px; }
  .site-types { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; margin-bottom: 32px; }
  @media (max-width: 800px) { .site-types { grid-template-columns: 1fr; } }
  .type-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: border-color 0.15s, box-shadow 0.15s; }
  .type-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
  .type-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--brand-light); color: var(--brand); padding: 5px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
  .type-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
  .type-card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 16px; }
  .type-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .type-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; color: var(--ink-soft); }
  .type-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--brand); }

  /* ===== hosting box ===== */
  .hosting-box { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; margin-bottom: 32px; }
  .hosting-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
  .hosting-item { display: inline-flex; align-items: center; gap: 10px; font-size: 0.94rem; font-weight: 600; color: var(--ink-soft); background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; }
  .hosting-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--brand); }

  /* ===== calendly cta ===== */
  .calendly-cta { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .calendly-cta span { font-size: 0.95rem; color: var(--muted); }

  /* ===== portfolio grid (home + blog) ===== */
  .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
  .portfolio-all { text-align: center; margin-top: 30px; }
  .pc-link { display: flex; flex-direction: column; height: 100%; }
  .portfolio-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
  .portfolio-card .excerpt { font-size: 0.9rem; color: var(--muted); margin-top: 6px; line-height: 1.5; }
  .portfolio-meta .cat { font-size: 0.72rem; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.08em; }

  /* ===== blog page ===== */
  .blog-page { padding: 56px 0 88px; }
  .blog-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px; }
  .filter-btn {
    background: white; border: 1px solid var(--line);
    padding: 9px 18px; border-radius: 999px;
    font-family: inherit; font-weight: 600; font-size: 0.88rem;
    color: var(--ink-soft); cursor: pointer; transition: all 0.15s;
  }
  .filter-btn:hover { border-color: var(--brand); color: var(--brand); }
  .filter-btn.active { background: var(--brand); border-color: var(--brand); color: white; }

  /* ===== read more on card ===== */
  .read-more { display: inline-block; margin-top: 12px; font-size: 0.84rem; font-weight: 700; color: var(--brand); }

  /* ===== single post page ===== */
  .container-narrow { max-width: 760px; }
  .post-page { padding: 48px 0 88px; }
  .post-back { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.9rem; color: var(--muted); margin-bottom: 26px; }
  .post-back:hover { color: var(--brand); }
  .post-cat { display: inline-block; font-size: 0.74rem; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
  .post-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
  .post-date { font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted); margin-bottom: 26px; }
  .post-hero { width: 100%; height: auto; border-radius: var(--radius); margin-bottom: 28px; border: 1px solid var(--line); }
  .post-body p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
  .post-visit { margin-top: 14px; }

  /* ===== try vibe ===== */
  .try-vibe { padding: 56px 0; background: var(--bg); }
  .try-vibe-card { background: linear-gradient(135deg, var(--brand-light), #f4fbff); border: 1px solid rgba(0,153,255,0.2); border-radius: var(--radius); padding: 38px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
  .try-vibe-text { flex: 1 1 320px; }
  .try-vibe-text h2 { margin-bottom: 8px; }
  .try-vibe-text p { color: var(--ink-soft); }
  .try-vibe-box { flex: 1 1 360px; display: flex; gap: 10px; flex-wrap: wrap; }
  .try-vibe-box input { flex: 1 1 200px; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 0.95rem; background: white; color: var(--ink); }
  .try-vibe-box input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
  .try-vibe-box .btn { white-space: nowrap; }

  /* ===== error page ===== */
  .error-page { padding: 80px 0 100px; text-align: center; }
  .error-code { font-family: var(--font-mono); font-weight: 800; font-size: clamp(4rem, 14vw, 8rem); line-height: 1; color: var(--brand); opacity: 0.85; }
  .error-page h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 10px 0 12px; }
  .error-page p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; }

  /* ===== how it works ===== */
  .how { background: var(--ink); color: white; border-radius: var(--radius); padding: 34px; margin-bottom: 32px; position: relative; overflow: hidden; }
  .how::after { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; background: radial-gradient(circle, var(--brand-soft), transparent 70%); pointer-events: none; }
  .how-title { color: white; font-size: 1.25rem; margin-bottom: 22px; position: relative; max-width: 760px; }
  .how-shot { position: relative; margin: 0 0 22px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5); }
  .how-shot img { width: 100%; height: auto; display: block; }
  .how-shot figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 14px; font-family: var(--font-mono); font-size: 0.74rem; color: white; background: linear-gradient(to top, rgba(10,26,46,0.9), transparent); }
  .how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 22px; position: relative; }
  @media (max-width: 800px) { .how-steps { grid-template-columns: 1fr; } }
  .how-step { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 22px; }
  .how-step .hs-num { width: 40px; height: 40px; border-radius: 10px; background: rgba(0,153,255,0.18); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
  .how-step h4 { color: white; font-size: 1rem; margin-bottom: 6px; }
  .how-step p { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
  .how-note { position: relative; font-size: 0.92rem; line-height: 1.55; color: rgba(255,255,255,0.85); background: rgba(0,153,255,0.12); border: 1px solid rgba(0,153,255,0.3); border-radius: var(--radius-sm); padding: 16px 18px; }

/* ===== FAB Contattaci (fixed in basso a sinistra) ===== */
.fab-contact { position: fixed; left: 20px; bottom: 20px; z-index: 900; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .25s, transform .25s; }
.fab-contact.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 20px; border: none; border-radius: 999px; background: var(--brand); color: #fff; font-family: inherit; font-weight: 700; font-size: 0.95rem; cursor: pointer; box-shadow: 0 10px 28px -8px rgba(0,153,255,0.6); transition: background .15s, transform .15s; }
.fab-btn:hover { background: var(--brand-dark, #007acc); transform: translateY(-2px); }
.fab-btn svg { width: 19px; height: 19px; }
.fab-btn .fab-ico-close { display: none; }
.fab-contact.open .fab-btn .fab-ico-open { display: none; }
.fab-contact.open .fab-btn .fab-ico-close { display: inline; }
.fab-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-md); padding: 8px; min-width: 250px; display: flex; flex-direction: column; gap: 2px; }
.fab-panel[hidden] { display: none; }
.fab-item { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 10px; color: var(--ink-soft); font-weight: 600; font-size: 0.9rem; transition: background .12s, color .12s; }
.fab-item:hover { background: var(--brand-light); color: var(--brand); }
.fab-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--brand); }
.fab-item span { word-break: break-word; }
@media (max-width: 520px) { .fab-btn span { display: none; } .fab-btn { padding: 14px; } }
