:root {
    --persian-pink: #FF88C8;
    --oxford-blue: #011936;
    --veronica: #8447FF;
    --jonquil: #FFC900;
    --ghost-white: #F6F8FF;
    --oxford-deep: #00112a;
    --oxford-soft: #052553;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--oxford-blue);
    color: var(--ghost-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none;
  }

  body.compromised {
    animation: glitch 0.2s infinite;
  }

  @keyframes glitch {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(45deg) saturate(1.5); }
  }

  /* Cursor custom */
  .cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transition: transform 0.15s ease, opacity 0.2s ease;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--ghost-white);
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--persian-pink);
    transform: translate(-50%, -50%);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), width 0.25s, height 0.25s;
  }
  .cursor-ring.expand {
    width: 70px;
    height: 70px;
    border-color: var(--jonquil);
  }

  @media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
  }

  /* Background: grid removed, only glow remains */
  .bg-grid {
    display: none;
  }
  .bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132, 71, 255, 0.18) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    top: -200px;
    right: -200px;
  }
  .bg-glow-2 {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 136, 200, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    bottom: -150px;
    left: -150px;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(1, 25, 54, 0.6);
    border-bottom: 1px solid rgba(246, 248, 255, 0.06);
  }
  nav .logo-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    color: var(--ghost-white);
    letter-spacing: -0.02em;
  }
  nav .logo-mini img {
    height: 38px;
    width: auto;
    border-radius: 8px;
  }
  nav .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  nav .nav-links a {
    color: var(--ghost-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
    position: relative;
  }
  nav .nav-links a:hover {
    opacity: 1;
    color: var(--persian-pink);
  }
  nav .nav-links a::before {
    content: '{ ';
    color: var(--jonquil);
    opacity: 0;
    transition: opacity 0.2s;
  }
  nav .nav-links a::after {
    content: ' }';
    color: var(--jonquil);
    opacity: 0;
    transition: opacity 0.2s;
  }
  nav .nav-links a:hover::before,
  nav .nav-links a:hover::after {
    opacity: 1;
  }

  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    nav .nav-links { display: none; }
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
  }

  .hero-logo {
    width: 220px;
    height: 220px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 6s ease-in-out infinite;
  }
  .hero-logo:hover {
    transform: rotate(-3deg) scale(1.03);
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .hero-text .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 201, 0, 0.1);
    border: 1px solid rgba(255, 201, 0, 0.3);
    border-radius: 100px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 12px;
    color: var(--jonquil);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
  .hero-text .tag .dot {
    width: 6px;
    height: 6px;
    background: var(--jonquil);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero-text h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
  }
  .hero-text h1 .accent {
    color: var(--persian-pink);
    font-style: italic;
  }
  .hero-text h1 .brace {
    color: var(--jonquil);
    font-weight: 800;
    display: inline-block;
    transition: transform 0.3s;
  }
  .hero-text h1:hover .brace {
    transform: scale(1.15) rotate(-5deg);
  }

  .hero-text .subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(246, 248, 255, 0.75);
    max-width: 620px;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .hero-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 13px;
    color: rgba(246, 248, 255, 0.5);
  }
  .hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-meta span::before {
    content: '//';
    color: var(--persian-pink);
  }

  @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .hero-logo {
      width: 140px;
      height: 140px;
    }
    .hero { padding: 100px 24px 60px; }
    .hero-text .subtitle { font-size: 17px; }
  }

  /* Section heading */
  .section {
    padding: 100px 48px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .section-label {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 13px;
    color: var(--persian-pink);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--persian-pink);
  }

  .section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 56px;
    max-width: 900px;
  }
  .section-title .pink { color: var(--persian-pink); }
  .section-title .yellow { color: var(--jonquil); }

  @media (max-width: 768px) {
    .section { padding: 70px 24px; }
  }

  /* CTA cards */
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 900px) {
    .cta-grid { grid-template-columns: 1fr; }
  }

  .cta-card {
    position: relative;
    padding: 48px;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    border: 1px solid rgba(246, 248, 255, 0.08);
  }
  .cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }
  .cta-card:hover {
    transform: translateY(-6px);
  }
  .cta-card:hover::before {
    opacity: 1;
  }

  .cta-aziende {
    background: linear-gradient(160deg, var(--oxford-soft) 0%, var(--oxford-deep) 100%);
  }
  .cta-aziende::before {
    background: radial-gradient(circle at 80% 20%, rgba(255, 136, 200, 0.18), transparent 60%);
  }
  .cta-aziende .cta-num { color: var(--persian-pink); }
  .cta-aziende .cta-arrow { background: var(--persian-pink); color: var(--oxford-blue); }

  .cta-formazione {
    background: linear-gradient(160deg, var(--oxford-soft) 0%, var(--oxford-deep) 100%);
  }
  .cta-formazione::before {
    background: radial-gradient(circle at 80% 20%, rgba(255, 201, 0, 0.18), transparent 60%);
  }
  .cta-formazione .cta-num { color: var(--jonquil); }
  .cta-formazione .cta-arrow { background: var(--jonquil); color: var(--oxford-blue); }

  .cta-num {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }

  .cta-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .cta-card p {
    color: rgba(246, 248, 255, 0.75);
    font-size: 16px;
    margin-bottom: 28px;
    flex-grow: 1;
  }

  .cta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }
  .cta-tags span {
    padding: 6px 12px;
    background: rgba(246, 248, 255, 0.05);
    border: 1px solid rgba(246, 248, 255, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    color: rgba(246, 248, 255, 0.7);
  }

  .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--ghost-white);
    margin-top: auto;
  }
  .cta-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
  }
  .cta-card:hover .cta-arrow {
    transform: translateX(4px) rotate(-45deg);
  }

  .cta-secret {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(246, 248, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cta-card:hover .cta-secret {
    opacity: 1;
  }

  /* Manifesto */
  .manifesto {
    text-align: left;
    padding: 120px 48px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
  }
  .manifesto-quote {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
  }
  .manifesto-quote .brace {
    color: var(--jonquil);
    font-weight: 800;
    font-size: 1.2em;
    display: inline-block;
    vertical-align: middle;
    line-height: 0.8;
  }
  .manifesto-quote .highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(255, 136, 200, 0.4) 60%);
    padding: 0 4px;
  }
  .manifesto-body {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(246, 248, 255, 0.75);
    max-width: 720px;
  }
  .manifesto-body p { margin-bottom: 18px; }
  .manifesto-body strong {
    color: var(--persian-pink);
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .manifesto { padding: 70px 24px; }
  }

  /* Channels (Youtube + Newsletter) */
  .channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 900px) {
    .channels-grid { grid-template-columns: 1fr; }
  }

  .channel-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(246, 248, 255, 0.03);
    border: 1px solid rgba(246, 248, 255, 0.08);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .channel-card:hover {
    background: rgba(246, 248, 255, 0.05);
    border-color: rgba(255, 136, 200, 0.3);
    transform: translateY(-4px);
  }
  .channel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--persian-pink), var(--jonquil));
    transition: width 0.4s;
  }
  .channel-card:hover::after {
    width: 100%;
  }

  .channel-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .channel-icon.yt {
    background: rgba(255, 136, 200, 0.15);
    color: var(--persian-pink);
  }
  .channel-icon.news {
    background: rgba(255, 201, 0, 0.15);
    color: var(--jonquil);
  }

  .channel-card h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .channel-card .channel-handle {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 13px;
    color: rgba(246, 248, 255, 0.5);
    margin-bottom: 16px;
  }
  .channel-card p {
    color: rgba(246, 248, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
  }
  .channel-cta {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ghost-white);
  }
  .channel-cta::after {
    content: '→';
    transition: transform 0.3s;
  }
  .channel-card:hover .channel-cta::after {
    transform: translateX(6px);
  }

  /* Footer */
  footer {
    padding: 80px 48px 48px;
    border-top: 1px solid rgba(246, 248, 255, 0.08);
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 80px auto 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  @media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    footer { padding: 60px 24px 32px; }
  }

  .footer-brand h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
  }
  .footer-brand p {
    color: rgba(246, 248, 255, 0.6);
    font-size: 14px;
    max-width: 360px;
  }

  .footer-col h6 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--persian-pink);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer-col a {
    display: block;
    color: rgba(246, 248, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--jonquil); }

  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(246, 248, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(246, 248, 255, 0.4);
  }
  .footer-bottom .humanity-check {
    cursor: pointer;
    user-select: none;
    padding: 6px 12px;
    border: 1px solid rgba(246, 248, 255, 0.15);
    border-radius: 6px;
    transition: all 0.2s;
  }
  .footer-bottom .humanity-check:hover {
    border-color: var(--persian-pink);
    color: var(--persian-pink);
  }
  .footer-bottom .humanity-check.checked {
    background: rgba(255, 201, 0, 0.1);
    border-color: var(--jonquil);
    color: var(--jonquil);
  }

  /* Cookie banner ironico */
  #cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    padding: 20px 24px;
    background: rgba(1, 25, 54, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--persian-pink);
    border-radius: 16px;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  #cookie-banner.show { transform: translateY(0); }

  #cookie-banner h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--persian-pink);
  }
  #cookie-banner p {
    font-size: 13px;
    color: rgba(246, 248, 255, 0.8);
    margin-bottom: 14px;
    line-height: 1.5;
  }
  #cookie-banner .cookie-buttons {
    display: flex;
    gap: 8px;
  }
  #cookie-banner button {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }
  #cookie-banner .accept {
    background: var(--jonquil);
    color: var(--oxford-blue);
  }
  #cookie-banner .reject {
    background: transparent;
    color: rgba(246, 248, 255, 0.6);
    border: 1px solid rgba(246, 248, 255, 0.2);
  }
  #cookie-banner .accept:hover { transform: scale(1.03); }
  #cookie-banner .reject:hover { color: var(--persian-pink); border-color: var(--persian-pink); }

  /* Toast notifiche easter egg */
  #toast {
    position: fixed;
    top: 100px;
    right: 24px;
    padding: 14px 20px;
    background: var(--oxford-deep);
    border: 1px solid var(--jonquil);
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--jonquil);
    z-index: 2000;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 320px;
  }
  #toast.show { transform: translateX(0); }
  #toast::before {
    content: '⚠ ';
    margin-right: 4px;
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  /* Selection */
  ::selection {
    background: var(--persian-pink);
    color: var(--oxford-blue);
  }

/* ===== AGGIUNTE PER LE PAGINE INTERNE ===== */

/* Hero ridotto per le pagine interne */
.hero.compact {
  min-height: auto;
  padding: 180px 48px 40px;
}
.hero.compact .hero-text h1 {
  font-size: clamp(40px, 6vw, 74px);
}
@media (max-width: 900px) {
  .hero.compact { padding: 130px 24px 30px; }
}

/* Link attivo in nav */
nav .nav-links a.active {
  opacity: 1;
  color: var(--persian-pink);
}
nav .nav-links a.active::before,
nav .nav-links a.active::after {
  opacity: 1;
}

/* Nav mobile */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(246, 248, 255, 0.2);
  border-radius: 8px;
  color: var(--ghost-white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(1, 25, 54, 0.97);
    backdrop-filter: blur(16px);
    padding: 20px 24px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(246, 248, 255, 0.08);
  }
}

/* Blocchi di servizio */
.service-block {
  padding: 44px;
  border-radius: 24px;
  background: rgba(246, 248, 255, 0.03);
  border: 1px solid rgba(246, 248, 255, 0.08);
  margin-bottom: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.service-block:hover {
  border-color: rgba(255, 136, 200, 0.28);
  background: rgba(246, 248, 255, 0.05);
}
.service-block .cta-num { margin-bottom: 14px; color: var(--persian-pink); }
.service-block h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.service-block p {
  color: rgba(246, 248, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 760px;
}
.service-block p:last-of-type { margin-bottom: 0; }
@media (max-width: 768px) {
  .service-block { padding: 28px; }
  .service-block h3 { font-size: 24px; }
}

/* Elenco normative */
.norme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.norma {
  padding: 24px;
  border-radius: 16px;
  background: rgba(246, 248, 255, 0.03);
  border: 1px solid rgba(246, 248, 255, 0.08);
  transition: border-color 0.3s, transform 0.3s;
}
.norma:hover {
  border-color: rgba(255, 201, 0, 0.35);
  transform: translateY(-3px);
}
.norma h4 {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 14px;
  color: var(--jonquil);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.norma p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246, 248, 255, 0.7);
}

/* Passi del metodo */
.steps { counter-reset: step; margin-top: 8px; }
.step {
  position: relative;
  padding: 0 0 34px 62px;
  border-left: 1px solid rgba(246, 248, 255, 0.12);
  margin-left: 18px;
}
.step:last-child { border-left-color: transparent; padding-bottom: 0; }
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  left: -19px;
  top: -4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--oxford-deep);
  border: 1px solid var(--persian-pink);
  color: var(--persian-pink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  color: rgba(246, 248, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}
@media (max-width: 768px) {
  .step { padding-left: 46px; }
  .step h4 { font-size: 18px; }
}

/* Riquadro di richiamo */
.callout {
  padding: 32px 36px;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--oxford-soft) 0%, var(--oxford-deep) 100%);
  border: 1px solid rgba(255, 136, 200, 0.25);
  margin-top: 40px;
}
.callout h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}
.callout p {
  color: rgba(246, 248, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}
@media (max-width: 768px) { .callout { padding: 24px; } }

/* Bottone */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 100px;
  background: var(--persian-pink);
  color: var(--oxford-blue);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-top: 28px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 136, 200, 0.28);
}
.btn.ghost {
  background: transparent;
  color: var(--ghost-white);
  border: 1px solid rgba(246, 248, 255, 0.25);
}
.btn.ghost:hover {
  border-color: var(--jonquil);
  color: var(--jonquil);
  box-shadow: none;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Contatti */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  padding: 40px;
  border-radius: 24px;
  background: rgba(246, 248, 255, 0.03);
  border: 1px solid rgba(246, 248, 255, 0.08);
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover {
  border-color: rgba(255, 136, 200, 0.3);
  transform: translateY(-4px);
}
.contact-card h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--persian-pink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact-card .big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 2.4vw, 25px);
  letter-spacing: -0.02em;
  color: var(--ghost-white);
  text-decoration: none;
  display: inline-block;
  word-break: break-word;
  transition: color 0.2s;
}
a.big:hover { color: var(--jonquil); }
.contact-card p {
  color: rgba(246, 248, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 12px;
}
@media (max-width: 768px) { .contact-card { padding: 28px; } }

/* Prosa generica */
.prose {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(246, 248, 255, 0.75);
  max-width: 760px;
}
.prose p { margin-bottom: 18px; }
.prose strong { color: var(--persian-pink); font-weight: 500; }

/* Link inline dentro i paragrafi */
.contact-card p a,
.prose a,
.manifesto-body a,
.service-block a,
.callout p a {
  color: var(--persian-pink);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 136, 200, 0.35);
  transition: color 0.2s, border-color 0.2s;
}
.contact-card p a:hover,
.prose a:hover,
.manifesto-body a:hover,
.service-block a:hover,
.callout p a:hover {
  color: var(--jonquil);
  border-color: var(--jonquil);
}
