
/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }

/* ─── Variabili ──────────────────────────────────────── */
:root {
  --on-blu-notte:    #202B36;
  --on-teal:         #1F5B5E;
  --on-arancio:      #E8945A;
  --on-arancio-chiaro: #F4C49B;
  --on-teal-chiaro:  #6C9D9D;
  --on-sabbia:       #E5DFD6;
  --on-crema:        #FAF5E9;
  --on-grigio:       #F2F4F5;
  --on-inchiostro:   #0F1C26;
  --on-muted:        #555D63;

  --nav-h: 64px;
  --radius: 10px;
  --transition: 180ms ease;
}

/* ─── Base ───────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: var(--on-crema);
  color: var(--on-inchiostro);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.2;
  color: var(--on-blu-notte);
}

p { color: var(--on-muted); }

a { color: inherit; text-decoration: none; }

/* ─── Navigazione ────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--on-blu-notte);
  height: var(--nav-h);
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.45rem 0.85rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-links a.active {
  color: var(--on-arancio);
  background: transparent;
}

.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--on-arancio);
  color: var(--on-blu-notte) !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover { background: #d47a44; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--on-blu-notte);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile.is-open { display: block; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.nav-mobile ul a {
  display: block;
  padding: 0.65rem 0.5rem;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.nav-mobile ul a:hover,
.nav-mobile ul a.active { color: var(--on-arancio); }

.nav-mobile .nav-cta {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.75rem 1rem;
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  background: var(--on-teal);
  color: #fff;
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1rem, 5vw, 3rem);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-arancio-chiaro);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Rassicurazione sotto il CTA primario: tempi, gratuità, nessun impegno. */
.hero-reassure {
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
}

.hero-proof {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  max-width: 620px;
}

.hero-proof span {
  min-height: 4.25rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-proof strong {
  display: block;
  color: var(--on-arancio-chiaro);
  font-size: 1.05rem;
}

.hero-usps {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.hero-usps li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
}

.hero-usps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--on-arancio-chiaro);
  font-weight: 700;
}

.hero-video {
  width: min(360px, 90%);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  background: #FDF6E4;
  padding: 7%;
  --hero-logo-shift-x: 0%;
}

.hero-video video,
.hero-video img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  transform: translateX(var(--hero-logo-shift-x));
}

/* Hero pagine interne (senza video) */
.hero-slim {
  background: var(--on-teal);
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1rem, 5vw, 3rem);
  text-align: center;
}

.hero-slim h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.hero-slim p {
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

/* ─── Area Clienti demo ───────────────────────────────── */
.section-demo {
  background: #fff;
}

.demo-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.demo-copy .section-lead {
  max-width: 620px;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.demo-panel {
  border-radius: var(--radius);
  background: var(--on-blu-notte);
  color: #fff;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  box-shadow: 0 22px 55px rgba(15,28,38,0.18);
}

.demo-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.demo-panel-head span,
.demo-panel-focus span,
.demo-panel-grid span {
  color: rgba(255,255,255,0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-panel-head strong {
  color: var(--on-arancio-chiaro);
}

.demo-panel-focus {
  padding: 1.2rem 0;
}

.demo-panel-focus strong {
  display: block;
  margin-top: 0.35rem;
  max-width: 24rem;
  color: #fff;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.demo-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.demo-panel-grid div {
  min-height: 5rem;
  padding: 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.demo-panel-grid b {
  display: block;
  margin-top: 0.2rem;
  color: #fff;
  font-size: 0.95rem;
}

.demo-panel-grid .accent {
  background: rgba(232,148,90,0.14);
  border-color: rgba(244,196,155,0.32);
}

.service-demo-note {
  margin: -0.2rem 0 1.25rem;
  padding-left: 0.95rem;
  border-left: 3px solid var(--on-arancio);
}

.service-demo-note strong,
.service-demo-note span,
.service-demo-note a {
  display: block;
}

.service-demo-note strong {
  color: var(--on-blu-notte);
  font-size: 0.95rem;
}

.service-demo-note span {
  margin-top: 0.25rem;
  color: var(--on-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.service-demo-note a {
  margin-top: 0.45rem;
  color: var(--on-teal);
  font-size: 0.86rem;
  font-weight: 700;
}


/* ─── Bottoni ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
  min-height: 48px;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--on-arancio);
  color: var(--on-blu-notte);
  border-color: var(--on-arancio);
}

.btn-primary:hover { background: #d47a44; border-color: #d47a44; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline-dark {
  background: transparent;
  color: var(--on-teal);
  border-color: var(--on-teal);
}

.btn-outline-dark:hover {
  background: var(--on-teal);
  color: #fff;
}

/* ─── Sezioni ────────────────────────────────────────── */
.section {
  padding: clamp(3rem, 7vh, 5rem) clamp(1rem, 5vw, 3rem);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  max-width: 620px;
  color: var(--on-muted);
  line-height: 1.65;
}

.section-alt { background: var(--on-sabbia); }
.section-dark { background: var(--on-blu-notte); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark .section-label { color: var(--on-arancio); }

/* ─── Grid ────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── Card ────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(31,91,94,0.12);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 8px 32px rgba(15,28,38,0.10);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(31,91,94,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--on-teal);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Card servizi */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(31,91,94,0.14);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(15,28,38,0.12);
  transform: translateY(-4px);
}

.service-card.featured {
  border-color: var(--on-teal);
  border-width: 2px;
  position: relative;
  overflow: hidden;
  padding-top: 2.4rem;
}

.service-card.featured::before {
  content: 'Più scelto';
  position: absolute;
  top: 1.15rem;
  right: -2.75rem;
  width: 9rem;
  min-height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--on-teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(45deg);
}

.service-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-teal);
  background: rgba(31,91,94,0.08);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.service-card-desc {
  color: var(--on-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

@media (min-width: 901px) {
  .service-card h3 {
    min-height: 3.25rem;
  }

  .service-card-desc {
    min-height: 13.5rem;
  }
}

/* CTA sempre in fondo e allineata tra le tre card */
.service-card .btn {
  margin-top: auto;
}

.service-card .btn + .btn {
  margin-top: 0.75rem;
}

.service-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
}

.service-price .price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  min-height: 2.5rem;
}

.service-price strong {
  font-size: 1.8rem;
  color: var(--on-blu-notte);
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.15;
}

.service-price .price-prefix {
  display: block;
  min-height: 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-muted);
}

.service-price .price-period {
  font-size: 0.88rem;
  color: var(--on-muted);
  white-space: nowrap;
}

.service-price .price-note {
  display: block;
  max-width: 20rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--on-muted);
}

.service-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--on-muted);
}

.service-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--on-teal);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  margin-top: 2px;
}

/* ─── Passi (steps) ──────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--on-arancio);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 { font-size: 1.05rem; }

/* ─── Problemi (pain points) ─────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--on-arancio);
}

.pain-item svg {
  width: 22px;
  height: 22px;
  color: var(--on-arancio);
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--on-inchiostro);
}

/* ─── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: var(--on-teal);
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1rem, 5vw, 3rem);
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Dati identificativi in fondo al blocco contatti: obbligo di legge, tono discreto. */
.contact-legal {
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  color: var(--on-muted);
  line-height: 1.5;
}

/* Alternativa secondaria al CTA primario, resa come testo per non competere. */
.cta-alt {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
}

.cta-alt a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-founder {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.cta-founder img {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border: 3px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 22px rgba(15,28,38,0.24);
}

.cta-founder-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cta-founder-copy strong {
  color: #fff;
  font-size: 1.08rem;
}

.cta-founder-copy span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

/* ─── Divider ─────────────────────────────────────────── */
.divider-accent {
  width: 56px;
  height: 3px;
  background: var(--on-arancio);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

/* ─── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--on-blu-notte);
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  padding: 2rem clamp(1rem, 5vw, 3rem);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a,
.footer-btn {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-btn:hover { color: rgba(255,255,255,0.9); }

.footer-legal {
  flex-basis: 100%;
  width: 100%;
  max-width: 1100px;
  margin: 0.35rem auto 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  line-height: 1.45;
}


/* ─── Cookie Banner ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 300;
  width: min(calc(100vw - 2rem), 420px);
  display: none;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  padding: 1.1rem;
  background: rgba(250,245,233,0.97);
  border: 1px solid rgba(31,91,94,0.2);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(15,28,38,0.18);
  text-align: left;
}

.cookie-banner.is-visible { display: grid; }

.cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--on-muted);
}

.cookie-banner a {
  color: var(--on-teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-btn {
  min-height: 40px;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  border: 1px solid rgba(31,91,94,0.3);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.cookie-btn.secondary {
  background: rgba(255,255,255,0.4);
  color: var(--on-blu-notte);
}

.cookie-btn.secondary:hover { border-color: var(--on-teal); }

.cookie-btn.primary {
  background: var(--on-teal);
  border-color: var(--on-teal);
  color: #fff;
}

.cookie-btn.primary:hover { background: var(--on-blu-notte); border-color: var(--on-blu-notte); }

/* ─── Contatti ────────────────────────────────────────── */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(31,91,94,0.12);
  text-decoration: none;
  color: var(--on-inchiostro);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-item:hover {
  box-shadow: 0 6px 20px rgba(15,28,38,0.10);
  transform: translateY(-2px);
}

.contact-item-featured {
  border-color: rgba(232,148,90,0.55);
  background: rgba(232,148,90,0.10);
}

.contact-item-featured svg {
  color: var(--on-arancio);
}

.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--on-teal);
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

/* ─── About ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  row-gap: 1.5rem;
  align-items: start;
}

.about-text h2 { margin-bottom: 1rem; }
.about-text p + p { margin-top: 0.85rem; }

.about-text {
  grid-column: 1;
  grid-row: 1;
}

.about-quote {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(31,91,94,0.12);
  border-left: 3px solid var(--on-arancio);
  border-radius: var(--radius);
  color: var(--on-blu-notte);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  box-shadow: 0 6px 20px rgba(15,28,38,0.08);
}

.founder-profile {
  margin: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31,91,94,0.12);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(15,28,38,0.10);
}

.founder-profile-media {
  flex: 1 1 auto;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  background: var(--on-sabbia);
}

.founder-profile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.founder-profile figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
}

.founder-profile figcaption strong {
  color: var(--on-blu-notte);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
}

.founder-profile figcaption span {
  color: var(--on-muted);
  font-size: 0.9rem;
}

.about-highlight {
  background: var(--on-teal);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
}

.about-highlight h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1rem; }
.about-highlight ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-highlight li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.about-highlight li::before {
  content: '→';
  color: var(--on-arancio);
  font-weight: 700;
  flex-shrink: 0;
}

.about-highlight-wide {
  grid-column: 1;
  grid-row: 2;
}

.about-highlight-wide ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 980px) {
  .site-nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  /* Il CTA primario resta nella nav sticky quando il menu passa a hamburger:
     e' l'unica conversione del sito e non deve stare solo dentro il menu. */
  .site-nav .nav-cta {
    padding: 0.5rem 0.95rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  /* Il video e' decorativo (aria-hidden): resta sotto titolo, sottotitolo e CTA,
     cosi' su mobile la prima schermata porta il messaggio e non l'animazione. */
  .hero-video {
    justify-self: center;
    width: min(360px, calc(100vw - 4rem));
  }
  .hero-actions { justify-content: center; }
  .hero-proof { margin-left: auto; margin-right: auto; }
  .demo-showcase { grid-template-columns: 1fr; }
  .demo-panel { max-width: 520px; width: 100%; margin: 0 auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-text { grid-column: 1; grid-row: auto; }
  .founder-profile { grid-column: 1; grid-row: auto; align-self: start; width: 100%; }
  .founder-profile-media { flex: none; aspect-ratio: 4 / 3; }
  .about-highlight-wide { grid-column: 1; grid-row: auto; }
}

@media (max-width: 700px) {
  .site-nav { gap: 0.5rem; padding: 0 1rem; }
  .site-nav .nav-cta {
    padding: 0.48rem 0.8rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr; max-width: 360px; }
  .hero-proof span { min-height: auto; }
  .demo-actions { flex-direction: column; }
  .demo-actions .btn { width: 100%; justify-content: center; }
  .demo-panel-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-video {
    width: min(320px, calc(100vw - 3.5rem));
    padding: 8%;
    --hero-logo-shift-x: -2%;
  }
}

/* Schermi molto stretti: logo, CTA e hamburger devono stare sulla stessa riga. */
@media (max-width: 380px) {
  .nav-logo img { height: 30px; }
  .site-nav .nav-cta {
    padding: 0.44rem 0.68rem;
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}


/* ─── Accessibilita: skip-link e focus ──────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 500;
  background: var(--on-arancio);
  color: var(--on-blu-notte);
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--on-arancio);
  outline-offset: 2px;
}

/* ─── Social nel footer ─────────────── */
.footer-social { display: flex; align-items: center; gap: 0.75rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}
.footer-social a:hover {
  color: #fff;
  border-color: var(--on-arancio);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.footer-social svg { width: 18px; height: 18px; }

/* Chatbot Stella */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.on-chatbot {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: var(--on-chatbot-desktop-bottom);
  z-index: 320;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --on-chatbot-desktop-bottom: clamp(5.8rem, 8vw, 6.6rem);
  --on-chatbot-gap: 0.9rem;
  --on-chatbot-toggle-height: 60px;
  --on-chatbot-top-gap: 1rem;
  --on-chatbot-safe-bottom: max(0.85rem, env(safe-area-inset-bottom));
}

.cookie-banner.is-visible ~ .on-chatbot {
  --on-chatbot-desktop-bottom: calc(clamp(1rem, 3vw, 2rem) + 9.5rem);
}

.cookie-banner.is-visible ~ .on-chatbot .on-chatbot-panel {
  height: min(460px, calc(100vh - var(--on-chatbot-desktop-bottom) - var(--on-chatbot-toggle-height) - var(--on-chatbot-gap) - var(--on-chatbot-top-gap)));
}

.on-chatbot-toggle {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.85rem 1.15rem 0.85rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--on-blu-notte) 0%, var(--on-teal) 58%, #d9793f 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(15,28,38,0.30), 0 0 0 6px rgba(217,121,63,0.14);
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.on-chatbot:not(.is-open) .on-chatbot-toggle {
  animation: on-chatbot-pulse 3.8s ease-in-out infinite;
}

.on-chatbot-toggle:hover {
  background: linear-gradient(135deg, var(--on-teal) 0%, var(--on-blu-notte) 58%, #d9793f 100%);
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(15,28,38,0.36), 0 0 0 8px rgba(217,121,63,0.18);
  animation-play-state: paused;
}

.on-chatbot-toggle svg {
  width: 25px;
  height: 25px;
  color: #fff;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 2px rgba(15,28,38,0.28));
}

@keyframes on-chatbot-pulse {
  0%, 100% {
    box-shadow: 0 18px 42px rgba(15,28,38,0.30), 0 0 0 6px rgba(217,121,63,0.14);
    transform: translateY(0) scale(1);
  }
  45% {
    box-shadow: 0 24px 58px rgba(31,91,94,0.40), 0 0 0 12px rgba(217,121,63,0.22);
    transform: translateY(-2px) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .on-chatbot:not(.is-open) .on-chatbot-toggle {
    animation: none;
  }
}

.on-chatbot-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + var(--on-chatbot-gap));
  width: min(390px, calc(100vw - 2rem));
  height: min(610px, calc(100vh - var(--on-chatbot-desktop-bottom) - var(--on-chatbot-toggle-height) - var(--on-chatbot-gap) - var(--on-chatbot-top-gap)));
  display: none;
  grid-template-rows: auto 1fr auto auto auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31,91,94,0.18);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(15,28,38,0.28);
}

.on-chatbot.is-open .on-chatbot-panel { display: grid; }

.on-chatbot-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.9rem;
  background: var(--on-blu-notte);
  color: #fff;
}

.on-chatbot-kicker {
  margin-bottom: 0.2rem;
  color: var(--on-arancio-chiaro);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.on-chatbot-head h2 {
  color: #fff;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.15;
}

.on-chatbot-close {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
}

.on-chatbot-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
  padding: 1rem;
  overflow-y: auto;
  background: var(--on-crema);
}

.on-chatbot-msg {
  max-width: 86%;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.on-chatbot-msg-assistant {
  align-self: flex-start;
  background: #fff;
  color: var(--on-inchiostro);
  border: 1px solid rgba(31,91,94,0.12);
}

.on-chatbot-msg-user {
  align-self: flex-end;
  background: var(--on-teal);
  color: #fff;
}

.on-chatbot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.on-chatbot-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--on-arancio);
  color: var(--on-blu-notte);
  font-size: 0.8rem;
  font-weight: 800;
}

.on-chatbot-privacy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.38rem 0.75rem;
  border-top: 1px solid rgba(31,91,94,0.10);
  background: rgba(242,244,245,0.48);
  color: rgba(85,93,99,0.82);
  font-size: 0.65rem;
  line-height: 1.3;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.on-chatbot-privacy.is-dismissed {
  display: none;
}

.on-chatbot-privacy a {
  color: var(--on-teal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.on-chatbot-privacy-close {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--on-teal);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 7px rgba(31,91,94,0.22);
}

.on-chatbot-privacy-close:hover,
.on-chatbot-privacy-close:focus-visible {
  background: var(--on-blu-notte);
  outline: 2px solid rgba(232,148,90,0.7);
  outline-offset: 2px;
}

.on-chatbot-quick {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  overflow-x: auto;
  background: #fff;
  border-top: 1px solid rgba(31,91,94,0.10);
}

.on-chatbot-quick button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid rgba(31,91,94,0.24);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  background: rgba(31,91,94,0.06);
  color: var(--on-teal);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 750;
}

.on-chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 0.85rem 1rem 1rem;
  background: #fff;
  border-top: 1px solid rgba(31,91,94,0.10);
}

.on-chatbot-form textarea {
  width: 100%;
  min-height: 44px;
  max-height: 120px;
  resize: none;
  border: 1px solid rgba(31,91,94,0.22);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  color: var(--on-inchiostro);
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.35;
}

.on-chatbot-form button {
  min-height: 44px;
  align-self: end;
  border: none;
  border-radius: 999px;
  padding: 0 0.9rem;
  background: var(--on-arancio);
  color: var(--on-blu-notte);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
}

.on-chatbot-form button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.on-chatbot-form textarea:disabled {
  background: #f7f5ef;
  cursor: wait;
}

@media (max-width: 700px) {
  body.on-chatbot-open {
    overflow: hidden;
    touch-action: none;
  }

  .on-chatbot {
    right: 1rem;
    bottom: calc(var(--on-chatbot-safe-bottom) + 0.35rem);
  }

  .cookie-banner.is-visible ~ .on-chatbot {
    bottom: 13.25rem;
  }

  .cookie-banner.is-visible ~ .on-chatbot .on-chatbot-panel {
    bottom: var(--on-chatbot-safe-bottom);
    height: min(76vh, calc(100vh - 5.5rem));
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
  }

  .on-chatbot-toggle span {
    display: none;
    white-space: nowrap;
  }

  .on-chatbot:not(.is-open) .on-chatbot-toggle {
    animation: none;
  }

  .on-chatbot-toggle {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
    gap: 0;
    border-color: rgba(255,255,255,0.34);
    box-shadow: 0 10px 24px rgba(15,28,38,0.22), 0 0 0 3px rgba(217,121,63,0.08);
    font-size: 0;
  }

  .on-chatbot-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15,28,38,0.24), 0 0 0 4px rgba(217,121,63,0.10);
  }

  .on-chatbot-toggle svg {
    width: 22px;
    height: 22px;
  }

  .on-chatbot.is-open .on-chatbot-toggle {
    display: none;
  }

  .on-chatbot-panel {
    position: fixed;
    right: 0.5rem;
    left: 0.5rem;
    bottom: var(--on-chatbot-safe-bottom);
    width: auto;
    height: min(76vh, calc(100vh - 5.5rem));
    max-height: calc(100vh - 5.5rem);
    border-radius: 14px;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  }

  .on-chatbot-head {
    padding: 0.9rem 0.95rem 0.75rem;
  }

  .on-chatbot-head h2 {
    font-size: 1.08rem;
  }

  .on-chatbot-kicker {
    font-size: 0.66rem;
  }

  .on-chatbot-close {
    width: 40px;
    height: 40px;
  }

  .on-chatbot-body {
    padding: 0.8rem;
    gap: 0.65rem;
    -webkit-overflow-scrolling: touch;
  }

  .on-chatbot-msg {
    max-width: 92%;
    font-size: 0.86rem;
    line-height: 1.42;
    padding: 0.68rem 0.75rem;
  }

  .on-chatbot-privacy {
    padding: 0.34rem 0.75rem;
    font-size: 0.64rem;
    line-height: 1.28;
  }

  .on-chatbot-quick {
    padding: 0.65rem 0.75rem;
    scrollbar-width: none;
  }

  .on-chatbot-quick::-webkit-scrollbar {
    display: none;
  }

  .on-chatbot-quick button {
    min-height: 38px;
    padding: 0.42rem 0.78rem;
  }

  .on-chatbot-form {
    gap: 0.5rem;
    padding: 0.7rem 0.75rem calc(0.75rem + env(safe-area-inset-bottom));
  }

  .on-chatbot-form textarea,
  .on-chatbot-form button {
    min-height: 46px;
  }

  .on-chatbot-form textarea {
    font-size: 16px;
  }
}

@supports (height: 100dvh) {
  .on-chatbot-panel {
    height: min(610px, calc(100dvh - var(--on-chatbot-desktop-bottom) - var(--on-chatbot-toggle-height) - var(--on-chatbot-gap) - var(--on-chatbot-top-gap)));
  }

  .cookie-banner.is-visible ~ .on-chatbot .on-chatbot-panel {
    height: min(460px, calc(100dvh - var(--on-chatbot-desktop-bottom) - var(--on-chatbot-toggle-height) - var(--on-chatbot-gap) - var(--on-chatbot-top-gap)));
  }

  @media (max-width: 700px) {
    .on-chatbot-panel {
      height: min(76dvh, calc(100dvh - 5.5rem));
      max-height: calc(100dvh - 5.5rem);
    }

    .cookie-banner.is-visible ~ .on-chatbot .on-chatbot-panel {
      height: min(76dvh, calc(100dvh - 5.5rem));
    }
  }
}

/* ─── Pagina Risultati: stat tile ────────────────────── */
.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-muted);
  margin-bottom: 0.6rem;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--on-teal);
}

.stat-note {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--on-muted);
}

.section-dark .stat-value { color: var(--on-arancio); }
.section-dark .stat-label { color: rgba(255,255,255,0.6); }
.section-dark .stat-note { color: rgba(255,255,255,0.7); }

.result-disclaimer {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--on-muted);
  border-top: 1px solid rgba(31,91,94,0.15);
  padding-top: 1.25rem;
}

/* ─── Pagina Risorse: articolo lungo ──────────────────── */
.breadcrumb-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem clamp(1rem, 5vw, 3rem) 0.6rem;
  font-size: 0.72rem;
  color: rgba(85, 93, 99, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb-nav a { color: inherit; }
.breadcrumb-nav a:hover { color: var(--on-teal); text-decoration: underline; }

.article-meta {
  display: block;
  font-size: 0.82rem;
  color: var(--on-muted);
  margin-bottom: 0.75rem;
}

.article-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  max-width: 720px;
  color: var(--on-blu-notte);
  line-height: 1.6;
  font-family: 'Source Serif 4', Georgia, serif;
}

.article-body {
  max-width: 720px;
}

.article-body p {
  margin-bottom: 1.1rem;
  line-height: 1.7;
}

.article-body h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  margin: 2.5rem 0 1rem;
}

.article-body ul {
  margin: 0 0 1.1rem 1.25rem;
  color: var(--on-muted);
}

.article-body li { margin-bottom: 0.5rem; line-height: 1.6; }

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--on-teal);
}

.article-card-link:hover { text-decoration: underline; }

.resource-list {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
}
