/* ═══════════════════════════════════════════════════
   CUCINA VIOLA — styles.css
   Base: bozza.css (struttura pulita)
   Estetica: styles.css originale (sfondo, card, font)
═══════════════════════════════════════════════════ */

/* ─── FONTS ─── */
/* Assicurati di avere nel <head>:
   <link href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet"> */

/* ─── TOKEN ─── */
:root {
  /* Brand colors */
  --viola:        #6B4FA0;
  --viola-light:  #9B79CC;
  --viola-dark:   #3D2B62;
  --text:         #2a2426;
  --text-muted:   #665d61;
  --white:        #ffffff;

  /* Estetica originale */
  --paper:        rgba(255, 255, 255, 0.88);
  --lilac-soft:   #f1d8fb;
  --lilac:        #d39ce8;
  --lilac-deep:   #b67ad4;
  --line:         rgba(42, 36, 38, 0.12);
  --shadow:       0 18px 50px rgba(211, 156, 232, 0.18);

  /* Layout */
  --radius:    28px;
  --radius-sm: 12px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; }

/* ─── BODY — sfondo ricco dall'originale ─── */
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.92), transparent 24%),
    radial-gradient(circle at bottom right, rgba(211,156,232,0.18), transparent 26%),
    linear-gradient(180deg, #fefbfe 0%, #f9f1fc 55%, #fdf7fd 100%);
}

/* Pattern decorativo verticale dall'originale */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 5.8rem,
      rgba(227,202,238,0.45) 5.8rem,
      rgba(227,202,238,0.45) 8rem
    );
}

/* ─── TIPOGRAFIA ─── */
h1, h2, h3 {
  font-family: 'Amatic SC', cursive;
  line-height: 1.1;
  letter-spacing: 0.025em;
  margin: 0;
}

h1 { font-size: clamp(3.4rem, 5.8vw, 5.4rem); }
h2 { font-size: clamp(2.8rem, 4.8vw, 4rem); }
h3 { font-size: clamp(2rem, 3.5vw, 2.8rem); }

/* ─── SHELL ─── */
.site-shell {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

/* ─── CARD BASE — dall'originale ─── */
.hero-card,
.problem-band,
.service-card,
.step-card,
.pricing-card,
.final-cta,
.fit-card,
.proof-card {
  position: relative;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-card { backdrop-filter: blur(10px); }

/* Dettaglio angolo decorativo dall'originale */
.hero-card::after,
.service-card::after,
.pricing-card::after {
  content: '';
  position: absolute;
  inset: auto 20px 18px auto;
  width: 16px; height: 16px;
  border-right: 2px solid rgba(42,36,38,0.2);
  border-bottom: 2px solid rgba(42,36,38,0.2);
  transform: rotate(-45deg);
}

/* ─── SEZIONI ─── */
section { padding: 52px 0 0; }

.section-heading { margin-bottom: 40px; text-align: center; }
.section-heading h2 { color: var(--text); margin-bottom: 10px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.section-heading p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--viola);
  margin-bottom: 10px;
  display: block;
}

/* Eyebrow come pill nelle sezioni chiare */
.section-heading .eyebrow {
  display: inline-flex;
  background: rgba(241,216,251,0.65);
  border: 1px solid rgba(182,122,212,0.25);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ─── HERO ─── */
.hero-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: 48px 40px 44px;
  margin: 0 -8px;
  overflow: hidden;
}

/* Bagliore viola in alto a destra */
.hero-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(211,156,232,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: min(360px, 100%);
  margin-bottom: 4px;
  /* NESSUN filter: il logo viene mostrato com'è */
}

.hero-card h1 {
  max-width: 540px;
  color: var(--text);
  font-size: clamp(3rem, 6vw, 4.2rem);
}

.hero-note-block {
  background: var(--lilac-soft);
  border: 1.5px solid rgba(182,122,212,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  max-width: 420px;
  text-align: center;
  margin-top: 4px;
}

.note-title {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--viola-dark);
  margin-bottom: 4px;
}

.hero-note-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.note-location {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--viola-dark);
  opacity: 0.7;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(182,122,212,0.2);
  letter-spacing: 0.03em;
}

.hero-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.75;
  margin-top: 4px;
}

.hero-cta-wrap {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.email-link {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(102,93,97,0.35);
  transition: color 0.15s, text-decoration-color 0.15s;
}

.email-link:hover {
  color: var(--viola);
  text-decoration-color: var(--viola-light);
}

.final-cta .email-link,
.final-email-link {
  color: rgba(255,255,255,0.5);
  text-decoration-color: rgba(255,255,255,0.2);
}

.final-cta .email-link:hover,
.final-email-link:hover {
  color: rgba(255,255,255,0.85);
  text-decoration-color: rgba(255,255,255,0.5);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--lilac-deep), var(--lilac));
  box-shadow: 0 12px 30px rgba(182,122,212,0.38);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(182,122,212,0.48);
}

.hero-cta {
  min-height: 68px;
  padding: 0 40px;
  font-size: 1.12rem;
  min-width: min(100%, 320px);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.hero-links span {
  display: none; /* nascondo "Vai a:" — lo comunica la forma dei bottoni */
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(107,79,160,0.3);
  background: rgba(241,216,251,0.5);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--viola-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.hero-links a::before {
  content: '↓';
  font-size: 0.75rem;
  opacity: 0.7;
}

.hero-links a:hover {
  background: rgba(182,122,212,0.18);
  border-color: var(--viola-light);
  transform: translateY(-1px);
  color: var(--viola);
}

/* ─── SERVIZIO ─── */
.service-card {
  padding: 34px 36px 30px;
  background: linear-gradient(180deg, rgba(241,216,251,0.92), rgba(255,255,255,0.86));
}

.service-kicker {
  display: inline-block;
  background: var(--lilac-soft);
  border: 2px solid rgba(182,122,212,0.32);
  color: var(--viola-dark);
  font-family: 'Amatic SC', cursive;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.service-card h3 { color: var(--viola-dark); margin-bottom: 12px; }

.service-card > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--text);
}

.service-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--viola);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─── PER CHI È ─── */
.fit-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fit-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.fit-card:hover {
  border-color: rgba(182,122,212,0.6);
  box-shadow: 0 16px 44px rgba(182,122,212,0.22);
  transform: translateY(-6px) scale(1.02);
}

.fit-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--lilac-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.fit-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--viola-dark);
  margin-bottom: 4px;
  letter-spacing: 0;
  line-height: 1.3;
}

.fit-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── PROBLEMA ─── */
.problem-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 40px 36px;
  background: linear-gradient(135deg, rgba(61,43,98,0.97), rgba(107,79,160,0.92));
}

.problem-band .eyebrow { color: var(--white); }

.problem-band h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.problem-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.78;
  margin: 0;
  max-width: 58ch;
}

/* ─── COME FUNZIONA ─── */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.step-card:hover {
  border-color: rgba(182,122,212,0.55);
  box-shadow: 0 16px 44px rgba(182,122,212,0.2);
  transform: translateY(-6px) scale(1.02);
}

.step-number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--lilac-soft);
  border: 2px solid rgba(182,122,212,0.35);
  border-radius: 50%;
  font-family: 'Amatic SC', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lilac-deep);
  line-height: 1;
}

.step-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--viola-dark);
  margin-bottom: 5px;
  letter-spacing: 0;
  line-height: 1.3;
}

.step-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── CHI SONO ─── */
.bio-card {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.bio-photo,
.bio-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 3px solid var(--lilac-soft);
  box-shadow: 0 6px 20px rgba(182,122,212,0.2);
}

.bio-photo-placeholder {
  background: linear-gradient(135deg, var(--lilac-soft), var(--lilac));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Amatic SC', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--viola-dark);
}

.bio-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 10px;
}

.bio-text p:last-child { margin-bottom: 0; }
.bio-text strong { color: var(--text); font-weight: 800; }

@media (min-width: 560px) {
  .bio-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }
}

/* ─── VIDEO ─── */
.video-section .section-heading { margin-bottom: 24px; }

.video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
  cursor: pointer;
}

.video-wrapper video {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.video-sound-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.52);
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.18s;
  z-index: 2;
}

.video-sound-btn:hover { background: rgba(0,0,0,0.72); }

.video-sound-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.video-sound-btn .icon-unmuted { display: none; }
.video-sound-btn .icon-muted   { display: block; }

.video-wrapper[data-muted="false"] .video-sound-btn .icon-muted   { display: none; }
.video-wrapper[data-muted="false"] .video-sound-btn .icon-unmuted { display: block; }

/* ─── SOCIAL PROOF ─── */
.proof-section .section-heading { margin-bottom: 24px; }

.proof-card {
  padding: 34px 38px;
  background: linear-gradient(180deg, rgba(241,216,251,0.4), rgba(255,255,255,0.9));
}

.proof-quote-mark {
  font-family: 'Amatic SC', cursive;
  font-size: 5rem;
  color: var(--lilac);
  line-height: 0.6;
  margin-bottom: 14px;
  display: block;
}

.proof-card blockquote {
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 18px;
}

.proof-author {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--viola);
}

.proof-author span {
  font-weight: 400;
  color: var(--text-muted);
}

/* ─── PREZZI ─── */
.pricing-card {
  padding: 38px 36px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(241,216,251,0.35));
}

.pricing-card .eyebrow { margin-bottom: 22px; }

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  transition: border-color 0.15s;
}

.price-row:hover { border-color: rgba(182,122,212,0.5); }

.price-row.featured {
  background: linear-gradient(135deg, rgba(182,122,212,0.22), rgba(241,216,251,0.95));
  border: 2.5px solid rgba(107,79,160,0.5);
  box-shadow: 0 6px 24px rgba(182,122,212,0.22);
  position: relative;
  padding: 20px 18px;
  margin: 4px 0;
}

.price-badge {
  position: absolute;
  top: -10px; left: 18px;
  background: linear-gradient(135deg, var(--lilac-deep), var(--lilac));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 12px;
  border-radius: 10px;
}

.price-row span   { font-size: 0.97rem; color: var(--text); }
.price-row strong { font-size: 1.05rem; font-weight: 800; color: var(--viola-dark); }
.price-row.featured span   { color: var(--viola-dark); font-weight: 700; font-size: 1.02rem; }
.price-row.featured strong { font-size: 1.3rem; color: var(--viola); }

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(241,216,251,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  line-height: 1.65;
  border: 1.5px solid rgba(182,122,212,0.15);
}

/* ─── FINAL CTA ─── */
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-top: 52px;
  padding: 52px 40px 48px;
  background: linear-gradient(135deg, rgba(61,43,98,0.97), rgba(107,79,160,0.93));
}

.final-cta .eyebrow { color: rgba(255,255,255,0.55); }

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
  max-width: 24ch;
}

.final-cta > p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 44ch;
}

.ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.ig-cta:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.42);
  color: var(--white);
}

.ig-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ig-cta strong { font-weight: 800; }

.final-cta-button {
  margin-top: 8px;
  min-height: 58px;
  padding: 0 40px;
  font-size: 1.06rem;
  white-space: nowrap;
}

/* ─── FOOTER DISCLAIMER ─── */
.site-footer {
  text-align: center;
  padding: 12px 20px 36px;
  max-width: 760px;
  margin: 0 auto;
}

.site-disclaimer {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* ─── ANIMAZIONI ─── */

/* Titoli di sezione: eyebrow entra prima, h2 segue */
.heading-anim .eyebrow {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.heading-anim h2 {
  opacity: 0;
  transform: translateY(26px) scale(0.95);
  transition: opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.13s,
              transform 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.13s;
}
.heading-anim.is-visible .eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.heading-anim.is-visible h2 {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Entrata scroll: salita con rimbalzo morbido */
.fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Stagger per card in griglia */
.fit-grid .fit-card:nth-child(2),
.steps-grid .step-card:nth-child(2) { transition-delay: 0.12s; }
.fit-grid .fit-card:nth-child(3),
.steps-grid .step-card:nth-child(3) { transition-delay: 0.24s; }

/* Wiggle icona fit-card al hover */
@keyframes wiggle {
  0%   { transform: rotate(0deg)   scale(1); }
  25%  { transform: rotate(-14deg) scale(1.15); }
  50%  { transform: rotate(10deg)  scale(1.1); }
  75%  { transform: rotate(-6deg)  scale(1.05); }
  100% { transform: rotate(0deg)   scale(1); }
}
.fit-card:hover .fit-icon { animation: wiggle 0.45s ease; }

/* Pulse anello sul numero step al hover */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(182,122,212,0.5); }
  60%  { box-shadow: 0 0 0 10px rgba(182,122,212,0);  }
  100% { box-shadow: 0 0 0 0   rgba(182,122,212,0);  }
}
.step-card:hover .step-number { animation: pulse-ring 0.55s ease; }

/* Ring glow sul CTA principale */
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(182,122,212,0.48),
              0 0 0 5px rgba(182,122,212,0.15);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .heading-anim .eyebrow,
  .heading-anim h2 { opacity: 1; transform: none; transition: none; }
  .fit-card:hover .fit-icon,
  .step-card:hover .step-number { animation: none; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — un solo file, tre breakpoint
   Logica: mobile-last (base = desktop, poi si scala)
   Breakpoint usati:
     600px  → tablet stretto / telefono landscape
     430px  → telefono standard (iPhone 14, Pixel 7…)
     360px  → telefono piccolo (SE, Android entry)
═══════════════════════════════════════════════════ */

/* ── 600px: tablet stretto ── */
@media (max-width: 600px) {
  :root {
    --radius:    20px;   /* card meno tonde, più compatte */
    --radius-sm: 10px;
  }

  .site-shell {
    padding: 8px 14px 60px;
  }

  /* Tipografia: dimensioni più compatte, letter-spacing ridotto */
  h1, h2, h3 { letter-spacing: 0.015em; }
  h1 { font-size: clamp(2.4rem, 8.5vw, 3.2rem); }
  h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
  h3 { font-size: clamp(1.7rem, 5.5vw, 2.2rem); }
  .hero-card h1     { font-size: clamp(2.4rem, 8.5vw, 3.2rem); }
  .problem-band h2  { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* Hero */
  .hero-card {
    padding: 36px 24px 32px;
    margin: 0;
    gap: 12px;
  }
  .hero-logo        { width: min(260px, 80%); }
  .hero-note-block  { max-width: 100%; }
  .hero-lead        { max-width: 100%; }
  .hero-cta         { width: 100%; min-height: 60px; font-size: 1.05rem; }

  /* Sezioni: meno spazio verticale */
  section { padding: 40px 0 0; }
  .section-heading  { margin-bottom: 24px; }

  /* Card padding ridotto */
  .service-card     { padding: 26px 22px; }
  .step-card        { padding: 20px 20px; }
  .fit-card         { padding: 18px 20px; gap: 14px; }
  .proof-card       { padding: 26px 22px; }
  .pricing-card     { padding: 28px 20px; }
  .problem-band     { padding: 30px 24px; }
  .final-cta        { padding: 40px 24px 36px; gap: 14px; }

  /* Prezzi: su mobile label e prezzo su righe separate */
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
  }
  .price-row strong { font-size: 1.15rem; }

  /* CTA finale */
  .final-cta-button { width: 100%; min-height: 56px; }
  .final-cta h2     { font-size: clamp(1.8rem, 6.5vw, 2.4rem); }
}

/* ── 430px: telefono standard ── */
@media (max-width: 430px) {
  .site-shell { padding: 0 10px 52px; }

  h1, h2, h3 { letter-spacing: 0.008em; }
  h1 { font-size: clamp(1.55rem, 7vw, 1.9rem); }
  h2 { font-size: clamp(1.4rem, 6.5vw, 1.75rem); }
  .section-heading h2  { font-size: clamp(1.25rem, 5.5vw, 1.55rem); }
  .hero-card h1        { font-size: clamp(1.55rem, 7vw, 1.9rem); }
  .problem-band h2,
  .final-cta h2        { font-size: clamp(1.4rem, 6.5vw, 1.75rem); }
  .final-cta h2        { max-width: 100%; }

  /* Hero: ancora più compatto */
  .hero-card    { padding: 28px 18px 26px; gap: 10px; }
  .hero-logo    { width: min(200px, 70%); }

  /* Testo corpo leggermente più piccolo */
  .hero-lead           { font-size: 0.93rem; }
  .service-card > p    { font-size: 0.97rem; }
  .problem-band p      { font-size: 0.97rem; }
  .proof-card blockquote { font-size: 1rem; }

  /* Pill nav hero: full width su schermi molto stretti */
  .hero-links { gap: 6px; }
  .hero-links a { font-size: 0.78rem; padding: 6px 13px; }

  /* step-card e fit-card: icona più piccola */
  .step-number { width: 32px; height: 32px; font-size: 1.3rem; }
  .fit-icon    { width: 34px; height: 34px; font-size: 1rem; }

  /* Prezzi */
  .pricing-card  { padding: 22px 16px; }
  .price-row     { padding: 12px 14px; }

  /* CTA */
  .final-cta         { padding: 32px 18px 28px; }
  .final-cta-button  { min-height: 52px; font-size: 1rem; }

  /* Proof */
  .proof-quote-mark { font-size: 3.5rem; }
}

/* ── 360px: telefono piccolo ── */
@media (max-width: 360px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.25rem; }
  .section-heading h2 { font-size: 1.15rem; }
  .hero-card h1       { font-size: 1.45rem; }
  .problem-band h2,
  .final-cta h2       { font-size: 1.25rem; }

  .hero-card  { padding: 24px 14px 22px; }
  .site-shell { padding: 0 8px 44px; }

  .service-card,
  .step-card,
  .fit-card,
  .proof-card   { padding: 18px 14px; }

  .pricing-card { padding: 18px 14px; }
  .problem-band { padding: 24px 16px; }
  .final-cta    { padding: 28px 14px 24px; }
}