@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* =========================================================
   Mondo Psicologi — Landing
   Palette e brand centralizzati in :root (facilmente sostituibili
   quando arrivano i colori ufficiali del brand).
   ========================================================= */

:root {
  /* Brand — verde ufficiale Mondo Psicologi (campionato dal logo: #045F52) */
  --brand:        #045F52;   /* verde brand */
  --brand-dark:   #023A31;   /* shade per hover/profondità */
  --brand-soft:   #D6E8E3;   /* tint chiaro per sfondi soft */
  --accent-warm:  #F4A261;   /* peach — accento caldo illustrazioni */
  --lilac:        #B8A9D9;   /* secondario soft */

  /* Neutri */
  --ink:      #1F2A37;       /* testo principale */
  --ink-soft: #4B5563;       /* testo secondario */
  --bg:       #FBF8F3;       /* crema caldo */
  --bg-soft:  #F1EFE8;       /* sezioni alternate */
  --white:    #FFFFFF;
  --line:     #E7E2D8;

  /* Misure */
  --maxw: 1140px;
  --radius: 18px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(31, 42, 55, .08);
  --shadow-sm: 0 4px 14px rgba(31, 42, 55, .06);

  --font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset di base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; margin: 0; font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-family: var(--font-body);
  padding: 13px 26px; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  font-size: 1rem;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-pill { background: var(--brand-soft); color: var(--brand-dark); padding: 10px 20px; }
.btn-pill:hover { background: var(--brand); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1.08rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, .85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-weight: 500; color: var(--ink-soft); padding: 6px 0; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--brand); transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang { background: none; border: none; font: inherit; color: var(--ink-soft); cursor: pointer; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 24px; border-bottom: 1px solid var(--line); }
.mobile-menu a { padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { border: 2px solid transparent; margin-top: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 40px; text-align: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; left: 50%; top: -140px; transform: translateX(-50%);
  width: 960px; height: 640px; max-width: 130vw;
  background: radial-gradient(closest-side, var(--brand-soft), transparent 72%);
  opacity: .55; z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

/* Terapeuti / aziende */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dual-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow-sm); }
.dual-eyebrow { display: inline-block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); font-weight: 700; margin-bottom: 10px; }
.dual-card h3 { font-size: 1.6rem; margin-bottom: 10px; }
.dual-card p { color: var(--ink-soft); margin: 0 0 22px; }
@media (max-width: 900px) { .dual { grid-template-columns: 1fr; } }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 700; letter-spacing: -.02em; }
.hero-title .accent { color: var(--brand); }
.hero-sub { max-width: 680px; margin: 22px auto 0; font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink-soft); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

.hero-figure { margin-top: 56px; display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: center; }
.hero-illustration svg { width: 100%; height: auto; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  background: var(--brand-soft); border-radius: var(--radius); padding: 28px 18px;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--brand-dark); }
.stat-label { display: block; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Sezioni generiche ---------- */
.section { padding: 86px 0; }
.section-soft { background: var(--bg-soft); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); text-align: center; }
.section-lead { text-align: center; color: var(--ink-soft); max-width: 620px; margin: 14px auto 48px; font-size: 1.1rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0 0 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); }
.step-badge {
  width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Categorie ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.cat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px; font-weight: 600; color: var(--ink);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; align-items: center; gap: 12px;
}
.cat-card::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); flex: none; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand); }

/* ---------- Valori ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value { text-align: left; }
.value-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; margin-bottom: 16px; }
.value-ico svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.2rem; margin-bottom: 6px; }
.value p { color: var(--ink-soft); margin: 0; }

/* ---------- Testimonianze ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.quote blockquote { margin: 0 0 14px; font-size: 1.15rem; font-family: var(--font-head); font-weight: 500; }
.quote figcaption { color: var(--ink-soft); font-weight: 600; }
.disclaimer-mini { text-align: center; color: var(--ink-soft); font-size: .85rem; margin-top: 28px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; padding: 76px 0; }
.cta-inner { text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { font-size: 1.15rem; opacity: .92; margin: 12px 0 28px; }
.cta-band .btn-primary { background: #fff; color: var(--brand-dark); }
.cta-band .btn-primary:hover { background: var(--bg); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #D7DCE3; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(5, 1fr); gap: 30px; }
.footer-seo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { color: #9AA3B2; max-width: 240px; }
.badge { display: inline-block; margin-top: 12px; background: rgba(255,255,255,.08); padding: 6px 12px; border-radius: var(--radius-pill); font-size: .85rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: #9AA3B2; padding: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-seo { margin-top: 28px; color: #9AA3B2; font-size: .88rem; }
.footer-seo a { color: #9AA3B2; }
.footer-seo a:hover { color: #fff; }
.crisis { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.crisis p { color: #9AA3B2; font-size: .92rem; }
.footer-bottom { margin-top: 24px; display: flex; justify-content: space-between; color: #6B7280; font-size: .9rem; flex-wrap: wrap; gap: 8px; }

/* =========================================================
   PAGINE INTERNE — componenti aggiuntivi
   ========================================================= */

/* Nav: link attivo */
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { width: 100%; }

/* Hero pagine interne */
.page-hero { background: var(--brand-soft); padding: 72px 0 60px; text-align: center; }
.page-hero .eyebrow { color: var(--brand-dark); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 12px 0 0; letter-spacing: -.02em; }
.page-hero p { max-width: 640px; margin: 18px auto 0; color: var(--ink-soft); font-size: 1.15rem; }
.page-hero .hero-cta { margin-top: 30px; }

/* Benefits (terapeuti / aziende) */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.benefit .value-ico { margin-bottom: 14px; }
.benefit h3 { font-size: 1.2rem; margin-bottom: 6px; }
.benefit p { color: var(--ink-soft); margin: 0; }

/* FAQ accordion */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 4px; font: 600 1.1rem var(--font-body); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: "+"; font-size: 1.5rem; color: var(--brand); transition: transform .2s ease; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--ink-soft); }
.faq-a p { margin: 0 4px 22px; }

/* Directory terapeuti (mockup) */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.filter-bar select, .filter-bar input { font: inherit; padding: 11px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--white); color: var(--ink); }
.therapist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.therapist-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.therapist-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.therapist-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; flex: none; }
.therapist-card h3 { font-size: 1.15rem; margin: 0; }
.therapist-card .role { color: var(--ink-soft); font-size: .9rem; }
.therapist-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 14px; }
.tag { background: var(--bg-soft); border-radius: var(--radius-pill); padding: 4px 11px; font-size: .8rem; color: var(--ink-soft); }
.therapist-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.therapist-meta .price { font-weight: 700; color: var(--ink); }

/* Questionario (mockup del flusso matching) */
.q-wrap { max-width: 680px; margin: 0 auto; }
.q-progress { height: 8px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.q-progress i { display: block; height: 100%; background: var(--brand); border-radius: 999px; }
.q-step-label { color: var(--ink-soft); font-size: .9rem; margin-bottom: 28px; }
.q-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 34px; box-shadow: var(--shadow); }
.q-card h2 { font-size: 1.7rem; margin-bottom: 24px; }
.q-options { display: grid; gap: 12px; }
.q-option { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border: 2px solid var(--line); border-radius: 14px; cursor: pointer; font-weight: 500; transition: border-color .15s ease, background .15s ease; }
.q-option:hover { border-color: var(--brand); background: var(--brand-soft); }
.q-actions { display: flex; justify-content: space-between; margin-top: 28px; }
.q-note { text-align: center; color: var(--ink-soft); font-size: .85rem; margin-top: 20px; }

/* Matching — layout split "stile typeform" (pagina matching.html) */
.match { display: grid; grid-template-columns: 44% 56%; min-height: calc(100vh - 73px); }
.match-illu { background: var(--brand-soft); display: grid; place-items: center; padding: 48px; }
.match-illu svg { width: 100%; max-width: 400px; height: auto; }
.match-panel { display: flex; flex-direction: column; justify-content: center; padding: 56px clamp(24px, 6vw, 88px); position: relative; }
.match-panel .q-progress { position: absolute; top: 0; left: 0; right: 0; height: 6px; border-radius: 0; margin: 0; }
.match-step-label { color: var(--ink-soft); font-size: .9rem; margin-bottom: 16px; }
.match-q { font-family: var(--font-head); font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 600; line-height: 1.15; margin: 0 0 26px; max-width: 32ch; }
.match-sub { color: var(--ink-soft); margin: -16px 0 26px; max-width: 46ch; }
.opts { display: grid; gap: 12px; max-width: 520px; }
.opt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; background: var(--white); border: 2px solid var(--line); border-radius: 14px; padding: 15px 18px; font: 500 1.05rem var(--font-body); color: var(--ink); cursor: pointer; transition: border-color .15s ease, background .15s ease, transform .1s ease; }
.opt:hover { border-color: var(--brand); background: var(--brand-soft); }
.opt:active { transform: scale(.99); }
.opt .k { flex: none; width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--line); display: grid; place-items: center; font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.opt:hover .k { border-color: var(--brand); color: var(--brand-dark); }
.match-actions { display: flex; gap: 12px; margin-top: 26px; max-width: 520px; align-items: center; }
.match-input { font: inherit; padding: 15px 18px; border: 2px solid var(--line); border-radius: 14px; width: 100%; max-width: 520px; }
.match-input:focus { outline: none; border-color: var(--brand); }
.match-note { color: var(--ink-soft); font-size: .82rem; margin-top: 26px; max-width: 46ch; }
.consent-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; margin: 4px 0 22px; max-width: 540px; }
.consent-box p { margin: 0 0 12px; font-size: .9rem; color: var(--ink-soft); }
.consent-check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; cursor: pointer; }
.consent-check input { margin-top: 3px; flex: none; }
.match-section { color: var(--brand); font-weight: 700; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; margin: 0 0 6px; }
@media (max-width: 900px) {
  .match { grid-template-columns: 1fr; min-height: auto; }
  .match-illu { padding: 28px; }
  .match-illu svg { max-width: 200px; }
  .match-panel { padding: 36px 24px 56px; }
}

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .2s ease; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-cover { height: 150px; background: linear-gradient(135deg, var(--brand-soft), var(--brand)); }
.article-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-cat { color: var(--brand-dark); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.article-card h3 { font-size: 1.2rem; }
.article-card p { color: var(--ink-soft); margin: 0; flex: 1; }
.article-meta { color: var(--ink-soft); font-size: .85rem; }

/* Prose / sezioni testo */
.lead-center { text-align: center; max-width: 640px; margin: 0 auto 40px; color: var(--ink-soft); font-size: 1.1rem; }

/* Profilo terapeuta */
.profile-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.profile-side { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); position: sticky; top: 96px; }
.profile-meta { list-style: none; padding: 0; margin: 16px 0 20px; display: grid; gap: 10px; color: var(--ink-soft); }
@media (max-width: 900px) { .profile-grid { grid-template-columns: 1fr; } .profile-side { position: static; } }

/* Pagine legali */
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); margin-bottom: 18px; }
.legal h2 { font-size: 1.25rem; margin: 28px 0 8px; }
.legal p { color: var(--ink-soft); }
.legal-note { background: #FFF4E6; border: 1px solid #F4C988; border-radius: 12px; padding: 14px 18px; color: #7A4B00 !important; }

/* Trust bar (sotto hero) */
.trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: var(--maxw); margin: 0 auto; padding: 40px 24px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: .95rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--brand); flex: none; }
.trust-item strong { color: var(--ink); display: block; font-weight: 600; }
@media (max-width: 760px) { .trust-bar { grid-template-columns: 1fr 1fr; gap: 22px; } }

/* Sezioni feature alternate */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 50px 0; }
.feature-row.reverse .feature-visual { order: -1; }
.feature-eyebrow { font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.feature-eyebrow.is-green { color: var(--brand); }
.feature-eyebrow.is-orange { color: #E07A3F; }
.feature-eyebrow.is-yellow { color: #C99700; }
.feature-row h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 10px 0 12px; line-height: 1.15; }
.feature-text > p { color: var(--ink-soft); margin: 0 0 22px; }
.feat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.feat-list li { display: flex; gap: 14px; }
.feat-list .fi { width: 26px; height: 26px; flex: none; color: var(--brand); }
.feat-list strong { display: block; }
.feat-list span { color: var(--ink-soft); font-size: .95rem; }
.feature-note { color: var(--ink-soft); font-size: .85rem; font-style: italic; margin-top: 20px; }
.feature-visual { background: var(--brand-soft); border-radius: 24px; padding: 44px; display: grid; place-items: center; min-height: 320px; }
.mock-card { background: var(--white); border-radius: 18px; box-shadow: var(--shadow); padding: 26px; width: 100%; max-width: 300px; }
.mock-card ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; gap: 30px; padding: 36px 0; } .feature-row.reverse .feature-visual { order: 0; } .feature-visual { min-height: 240px; padding: 32px; } }

/* About (2 colonne) */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-row h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 8px 0 18px; line-height: 1.12; }
.about-row p { color: var(--ink-soft); margin: 0 0 16px; }
.about-photo { background: linear-gradient(135deg, var(--brand-soft), var(--bg-soft)); border-radius: 24px; min-height: 380px; }
@media (max-width: 900px) { .about-row { grid-template-columns: 1fr; gap: 28px; } .about-photo { min-height: 240px; } }

/* Pricing */
.price-toggle { display: flex; justify-content: center; }
.price-toggle .pt { display: inline-flex; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 5px; gap: 4px; margin: 0 auto 44px; }
.price-toggle button { border: 0; background: none; font: 600 .95rem var(--font-body); padding: 9px 22px; border-radius: 999px; cursor: pointer; color: var(--ink-soft); }
.price-toggle button.active { background: var(--brand); color: #fff; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.price-card.featured { border: 2px solid var(--brand); box-shadow: var(--shadow); }
.price-card h3 { font-size: 1.5rem; margin: 0 0 8px; }
.price-amount { font-family: var(--font-head); font-size: 2rem; font-weight: 800; }
.price-amount small { font-size: .85rem; font-weight: 500; color: var(--ink-soft); }
.price-card .btn { width: 100%; margin: 20px 0; }
.price-intro { color: var(--ink-soft); font-weight: 600; margin: 0 0 14px; }
.price-card .feat-list .fi { width: 20px; height: 20px; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }

/* Get started (4 step) */
.start-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.start-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.start-top { background: #FBEFC2; padding: 22px; min-height: 110px; display: grid; place-items: center; }
.start-body { padding: 18px 22px 22px; }
.start-body strong { display: block; margin-bottom: 6px; }
.start-body span { color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 900px) { .start-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .start-grid { grid-template-columns: 1fr; } }

/* Get involved */
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.involve-card { text-align: center; }
.involve-cover { height: 180px; border-radius: var(--radius); background: linear-gradient(135deg, var(--brand-soft), var(--lilac)); margin-bottom: 18px; }
.involve-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.involve-card p { color: var(--ink-soft); margin: 0 0 16px; }
@media (max-width: 900px) { .involve-grid { grid-template-columns: 1fr; } }

/* Banner "stai ancora cercando" (preview rete sulla home) */
.match-banner { display: flex; gap: 24px; align-items: center; background: #FBEFC2; border-radius: var(--radius); padding: 26px 32px; margin-bottom: 32px; }
.match-banner .mb-ico { width: 52px; height: 52px; flex: none; color: var(--brand-dark); }
.match-banner h3 { font-size: 1.25rem; margin: 0 0 4px; }
.match-banner p { color: var(--ink-soft); margin: 0; }
.match-banner .mb-text { flex: 1; }
.match-banner .btn { flex: none; }
@media (max-width: 760px) { .match-banner { flex-direction: column; text-align: center; align-items: stretch; } }

@media (max-width: 900px) {
  .benefits, .therapist-grid, .blog-grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .therapist-grid, .blog-grid, .benefits { grid-template-columns: repeat(2, 1fr); }
}

/* Banner consenso analytics (GA4 — MON-192) */
.consent-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; max-width: 720px; margin: 0 auto; }
.consent-banner p { margin: 0; color: var(--ink-soft); font-size: .92rem; flex: 1 1 320px; }
.consent-banner .cb-actions { display: flex; gap: 10px; }

/* ---------- Animazioni reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .mobile-menu:not([hidden]) { display: flex; }
  .hero-figure { grid-template-columns: 1fr; }
  .hero-illustration { max-width: 260px; margin: 0 auto; }
  .steps, .value-grid, .quotes { grid-template-columns: 1fr; }
  .footer-grid, .footer-seo-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .footer-grid, .footer-seo-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
