/* ═══════════════════════════════════════════
   CARTOMANTI PROFESSIONALI — main.css v1.1
   ═══════════════════════════════════════════ */

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

:root {
  --purple:       #8000e2;
  --purple-mid:   #6200ab;
  --purple-deep:  #2a0050;
  --purple-dark:  #18002e;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --white:        #ffffff;
  --off:          #faf7ff;
  --text:         #160028;
  --text-mid:     #4a3560;
  --text-soft:    #7a6890;
  --green:        #0f7a4e;
  --red:          #b02020;
  --border:       rgba(128,0,226,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── HEADER ── */
.cpro-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--purple-dark);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.cpro-header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex; align-items: center; gap: 2rem;
}
.cpro-logo { flex-shrink: 0; }
.cpro-logo img { height: 44px; width: auto; }
.cpro-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.05em;
}
.cpro-nav { flex: 1; }
.cpro-nav-list { list-style: none; display: flex; gap: 2rem; }
.cpro-nav-list a { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.cpro-nav-list a:hover, .cpro-nav-list .current-menu-item > a { color: var(--gold-light); }

.cpro-header-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a0f00; font-weight: 600; font-size: 0.85rem;
  padding: 0.55rem 1.2rem; border-radius: 100px;
  white-space: nowrap; transition: transform 0.2s;
}
.cpro-header-btn:hover { transform: scale(1.04); }
.cpro-header-btn-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: cpro-pulse 2s ease-in-out infinite;
}

.cpro-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.cpro-hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.cpro-hero {
  background: var(--purple-dark);
  position: relative; overflow: hidden;
  padding: 5rem 1.5rem 4rem; text-align: center;
}
.cpro-hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(90px); }
.cpro-hero-orb-1 { width: 500px; height: 500px; background: rgba(128,0,226,0.22); top: -150px; left: -150px; animation: orb1 9s ease-in-out infinite; }
.cpro-hero-orb-2 { width: 350px; height: 350px; background: rgba(201,168,76,0.10); bottom: -100px; right: -80px; animation: orb2 11s ease-in-out infinite; }
@keyframes orb1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,30px)} }
@keyframes orb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,-20px)} }

.cpro-hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }

.cpro-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.8rem;
}
.cpro-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #3ecf8e; animation: cpro-pulse 2s ease-in-out infinite; }
@keyframes cpro-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }

.cpro-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700; line-height: 1.1; color: var(--white);
}
.cpro-hero h1 em { font-style: italic; color: var(--gold-light); }

.cpro-hero-sub { max-width: 580px; margin: 1.4rem auto 0; font-size: 1.05rem; color: rgba(255,255,255,0.6); }

.cpro-hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

.cpro-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a0f00; font-weight: 600; font-size: 1rem;
  padding: 1rem 2.2rem; border-radius: 100px;
  box-shadow: 0 6px 30px rgba(201,168,76,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.cpro-btn-gold:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(201,168,76,0.55); }

.cpro-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22);
  color: var(--white); font-weight: 500; font-size: 0.95rem;
  padding: 1rem 2rem; border-radius: 100px; transition: background 0.25s;
}
.cpro-btn-ghost:hover { background: rgba(255,255,255,0.15); }

.cpro-btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(128,0,226,0.12); border: 1px solid rgba(128,0,226,0.3);
  color: var(--purple); font-weight: 500; font-size: 0.9rem;
  padding: 0.85rem 1.8rem; border-radius: 100px; transition: background 0.25s;
}
.cpro-btn-ghost-dark:hover { background: rgba(128,0,226,0.2); }

.cpro-hero-note { margin-top: 1.2rem; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.cpro-trust { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2.5rem; border-top: 0.5px solid rgba(255,255,255,0.08); }
.cpro-trust-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.cpro-trust-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; margin-top: 2px; }

/* ── TICKER ── */
.cpro-ticker { background: var(--purple); padding: 0.6rem 0; overflow: hidden; }
.cpro-ticker-inner { display: flex; gap: 4rem; width: max-content; animation: ticker 22s linear infinite; }
.cpro-ticker-item { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.85); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.cpro-ticker-item::before { content: '✦'; color: var(--gold-light); font-size: 0.6rem; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SEZIONI GENERALI ── */
.cpro-section-inner { max-width: 1000px; margin: 0 auto; padding: 5rem 1.5rem; }
.cpro-eyebrow { font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--purple); display: block; margin-bottom: 0.6rem; }
.cpro-section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 0.6rem; }
.cpro-section-title em { font-style: italic; color: var(--purple); }
.cpro-section-sub { font-size: 1rem; color: var(--text-soft); margin-bottom: 2.5rem; }

/* ── OPERATORI ── */
.cpro-ops-section { background: var(--white); }
.cpro-turni-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cpro-turno-pill { font-size: 0.72rem; padding: 4px 12px; border-radius: 100px; border: 0.5px solid var(--border); color: var(--text-soft); background: var(--off); }
.cpro-turno-pill.active { background: var(--purple-deep); color: var(--gold-light); border-color: var(--purple); }

.cpro-night-banner { display: none; background: var(--purple-dark); border: 0.5px solid rgba(201,168,76,0.25); border-radius: 14px; padding: 2rem; text-align: center; margin-bottom: 1rem; }
.cpro-night-banner.visible { display: block; }
.cpro-night-moon { font-size: 2rem; display: block; margin-bottom: 0.7rem; }
.cpro-night-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold-light); margin-bottom: 0.4rem; }
.cpro-night-sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.cpro-night-sub strong { color: var(--gold-light); }
.cpro-night-countdown { display: inline-block; margin-top: 1rem; background: rgba(201,168,76,0.12); border: 0.5px solid rgba(201,168,76,0.3); border-radius: 100px; padding: 6px 18px; font-size: 0.85rem; font-weight: 500; color: var(--gold-light); }

.cpro-ops-list { border: 0.5px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 40px rgba(128,0,226,0.06); }
.cpro-op-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 0.5px solid var(--border); background: var(--white); transition: background 0.2s; }
.cpro-op-row:last-child { border-bottom: none; }
.cpro-op-row:hover { background: var(--off); }
.cpro-op-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.cpro-op-info { flex: 1; min-width: 0; }
.cpro-op-name { font-size: 14px; font-weight: 500; color: var(--text); }
.cpro-op-code { font-size: 11px; color: var(--text-soft); margin-top: 1px; }
.cpro-op-spec { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px; }
.cpro-op-tag { font-size: 10px; padding: 2px 7px; border-radius: 100px; border: 0.5px solid var(--border); }
.cpro-op-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cpro-op-busy-mins { font-size: 10px; color: var(--text-soft); text-align: right; margin-top: 3px; }

.cpro-pill-free { font-size: 12px; font-weight: 500; background: #f0ebff; color: var(--purple-mid); padding: 6px 13px; border-radius: 100px; text-decoration: none; white-space: nowrap; border: 0.5px solid rgba(128,0,226,0.25); transition: all 0.2s; }
.cpro-pill-free:hover { background: var(--purple); color: white; transform: scale(1.04); }
.cpro-pill-busy { font-size: 12px; font-weight: 500; background: #fdf0f0; color: var(--red); padding: 6px 13px; border-radius: 100px; white-space: nowrap; border: 0.5px solid rgba(180,30,30,0.2); }
.cpro-star-free { font-size: 17px; color: var(--green); }
.cpro-star-busy { font-size: 17px; color: var(--red); }

.cpro-ops-legend { display: flex; gap: 1.2rem; margin-top: 1rem; }
.cpro-ops-legend span { font-size: 12px; color: var(--text-soft); display: flex; align-items: center; gap: 5px; }

/* ── CTA PRINCIPALE ── */
.cpro-cta-main { background: var(--purple-dark); padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.cpro-cta-main::before { content: '☽'; position: absolute; font-size: 22rem; color: rgba(255,255,255,0.02); top: -4rem; right: -3rem; pointer-events: none; line-height: 1; }
.cpro-cta-main-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cpro-cta-main h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0.6rem; }
.cpro-cta-main h2 em { font-style: italic; color: var(--gold-light); }
.cpro-cta-main p { color: rgba(255,255,255,0.5); font-size: 1rem; margin-bottom: 3rem; }
.cpro-cta-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 640px; margin: 0 auto 1.5rem; }
.cpro-cta-card { background: var(--white); border-radius: 18px; padding: 2rem 1.5rem; text-align: left; }
.cpro-cta-card-type { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: #999; margin-bottom: 4px; }
.cpro-cta-card-num { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cpro-cta-card-price { font-size: 0.8rem; color: #777; line-height: 1.6; margin-bottom: 1.2rem; }
.cpro-cta-card-price strong { color: var(--text); }
.cpro-cta-card-btn { display: flex; align-items: center; justify-content: center; gap: 6px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a0f00; font-weight: 600; font-size: 0.88rem; padding: 0.75rem; border-radius: 100px; text-decoration: none; transition: all 0.25s; }
.cpro-cta-card-btn:hover { transform: scale(1.04); box-shadow: 0 8px 25px rgba(201,168,76,0.45); }
.cpro-free-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.18); border-radius: 100px; padding: 8px 20px; font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ── COME FUNZIONA ── */
.cpro-how { background: var(--off); }
.cpro-how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.cpro-how-step { background: var(--white); border: 0.5px solid var(--border); border-radius: 14px; padding: 1.5rem 1.2rem; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.cpro-how-step:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(128,0,226,0.09); }
.cpro-how-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--purple); line-height: 1; margin-bottom: 0.6rem; }
.cpro-how-title { font-size: 0.9rem; font-weight: 500; color: var(--text); margin-bottom: 0.4rem; }
.cpro-how-step p { font-size: 0.82rem; color: var(--text-soft); line-height: 1.6; }

/* ── SEO SECTION ── */
.cpro-seo-section { background: var(--white); }
.cpro-seo-inner { max-width: 1000px; margin: 0 auto; padding: 5rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.cpro-seo-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: var(--text); line-height: 1.25; margin-bottom: 1.2rem; }
.cpro-seo-text h2 em { font-style: italic; color: var(--purple); }
.cpro-seo-text p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.2rem; }
.cpro-seo-aside { background: var(--off); border-radius: 16px; padding: 2rem; border: 0.5px solid var(--border); }
.cpro-seo-aside h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.cpro-seo-list { list-style: none; padding: 0; }
.cpro-seo-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-mid); padding: 0.6rem 0; border-bottom: 0.5px solid var(--border); line-height: 1.5; }
.cpro-seo-list li:last-child { border-bottom: none; }
.cpro-seo-list li > span:first-child { color: var(--purple); flex-shrink: 0; }

/* ── SERVIZI ── */
.cpro-services { background: var(--purple-dark); }
.cpro-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.cpro-service-item { background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 1.5rem; transition: background 0.3s, transform 0.3s; }
.cpro-service-item:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
.cpro-service-icon { font-size: 1.4rem; margin-bottom: 0.7rem; display: block; }
.cpro-service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.cpro-service-item p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── TESTIMONIANZE ── */
.cpro-testi-section { background: var(--off); }
.cpro-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.cpro-testi-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 14px; padding: 1.5rem; }
.cpro-testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.6rem; }
.cpro-testi-card p { font-size: 0.9rem; color: var(--text-mid); font-style: italic; line-height: 1.7; margin-bottom: 1rem; }
.cpro-testi-author { font-size: 0.78rem; font-weight: 500; color: var(--purple-mid); }

/* ── FAQ ── */
.cpro-faq-section { background: var(--white); }
.cpro-faq-inner { max-width: 720px; margin: 0 auto; padding: 5rem 1.5rem; }
.cpro-faq-item { border: 0.5px solid var(--border); border-radius: 12px; margin-bottom: 0.7rem; overflow: hidden; }
.cpro-faq-btn { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.1rem 1.3rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.93rem; font-weight: 500; color: var(--text); transition: background 0.2s; }
.cpro-faq-btn:hover { background: var(--off); }
.cpro-faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--purple); color: white; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; transition: transform 0.3s; }
.cpro-faq-item.open .cpro-faq-icon { transform: rotate(45deg); }
.cpro-faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; padding: 0 1.3rem; }
.cpro-faq-item.open .cpro-faq-ans { max-height: 220px; padding: 0 1.3rem 1.2rem; }

/* ── INLINE CTA (articoli) ── */
.cpro-inline-cta { background: var(--purple-dark); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; margin: 3rem 0; position: relative; overflow: hidden; }
.cpro-inline-cta-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.cpro-inline-cta-title em { font-style: italic; color: var(--gold-light); }
.cpro-inline-cta-sub { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 1.5rem; }
.cpro-inline-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.8rem; }
.cpro-inline-cta-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── LAYOUT CON SIDEBAR ── */
.cpro-content-wrap { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem; }
.cpro-content-wrap.cpro-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.cpro-main { min-width: 0; }

/* ── ARTICOLO ── */
.cpro-article-header { margin-bottom: 2rem; }
.cpro-article-thumb { border-radius: 16px; overflow: hidden; margin-bottom: 1.5rem; max-height: 420px; }
.cpro-article-img { width: 100%; height: 100%; object-fit: cover; }
.cpro-article-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-soft); margin-bottom: 0.8rem; }
.cpro-article-meta a { color: var(--purple); }
.cpro-article-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 700; color: var(--text); line-height: 1.2; }
.cpro-page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; color: var(--text); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border); }
.cpro-article-body { font-size: 1rem; color: var(--text-mid); line-height: 1.85; }
.cpro-article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--text); margin: 2rem 0 1rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--border); }
.cpro-article-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--purple-mid); margin: 1.5rem 0 0.7rem; }
.cpro-article-body p { margin-bottom: 1.3rem; }
.cpro-article-body ul, .cpro-article-body ol { padding-left: 1.5rem; margin-bottom: 1.3rem; }
.cpro-article-body li { margin-bottom: 0.5rem; }
.cpro-article-body a { color: var(--purple); text-decoration: underline; }
.cpro-article-body strong { color: var(--text); font-weight: 600; }
.cpro-article-footer { margin-top: 2rem; padding-top: 1rem; border-top: 0.5px solid var(--border); }
.cpro-article-tags { font-size: 0.85rem; color: var(--text-soft); }
.cpro-article-tags a { color: var(--purple); margin-right: 0.4rem; }

/* ── SIDEBAR ── */
.cpro-sidebar {
  position: sticky;
  top: 88px;
  /* Niente height né overflow: la sidebar si allunga con il contenuto */
}

.cpro-sb-numbers { background: linear-gradient(135deg, #18002e, #2a0050); border-radius: 16px; padding: 1.2rem; margin-bottom: 1rem; }
.cpro-sb-live-row { display: flex; align-items: center; gap: 7px; margin-bottom: 1rem; }
.cpro-sb-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #3ecf8e; animation: cpro-pulse 2s ease-in-out infinite; flex-shrink: 0; }
.cpro-sb-live-dot.closed { background: #e24b4a; animation: none; }
.cpro-sb-live-text { font-size: 0.7rem; color: #3ecf8e; font-weight: 500; letter-spacing: 0.08em; }
.cpro-sb-live-text.closed { color: #e24b4a; }

.cpro-sb-num-btn { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 0.65rem 0.85rem; margin-bottom: 0.5rem; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.cpro-sb-num-btn:hover { background: rgba(255,255,255,0.13); transform: scale(1.02); }
.cpro-sb-num-btn:last-of-type { margin-bottom: 0; }
.cpro-sb-num-info { text-align: left; }
.cpro-sb-num-type { font-size: 0.58rem; color: rgba(255,255,255,0.4); letter-spacing: 0.2em; text-transform: uppercase; display: block; }
.cpro-sb-num-digits { font-size: 1rem; font-weight: 600; color: var(--white); display: block; }
.cpro-sb-num-price { font-size: 0.65rem; color: rgba(255,255,255,0.4); display: block; margin-top: 1px; }
.cpro-sb-call-pill { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a0f00; font-size: 0.7rem; font-weight: 700; padding: 5px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.cpro-sb-free-note { font-size: 0.62rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 0.7rem; }

.cpro-sb-ops-box {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  /* height e overflow rimossi: si allunga in automatico */
}
.cpro-sb-ops-header { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 1rem; border-bottom: 0.5px solid var(--border); background: var(--off); }
.cpro-sb-ops-title { font-size: 0.75rem; font-weight: 600; color: var(--text); letter-spacing: 0.05em; text-transform: uppercase; }
.cpro-sb-ops-update { font-size: 0.6rem; color: var(--green); animation: cpro-pulse 2s infinite; }
.cpro-sb-night { padding: 1rem; text-align: center; background: var(--purple-dark); }
.cpro-sb-night span { font-size: 1.2rem; display: block; margin-bottom: 0.4rem; }
.cpro-sb-night p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.cpro-sb-night p strong { color: var(--gold-light); }

/* ── FIX CHIAVE: rimossi max-height e overflow-y: auto ── */
.cpro-sb-ops-list {
  height: auto;
  overflow: visible;
}

.cpro-sb-op-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 0.5px solid var(--border); }
.cpro-sb-op-row:last-child { border-bottom: none; }
.cpro-sb-op-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.cpro-sb-op-info { flex: 1; min-width: 0; }
.cpro-sb-op-name { font-size: 12px; font-weight: 500; color: var(--text); }
.cpro-sb-op-code { font-size: 10px; color: var(--text-soft); }
.cpro-sb-op-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.cpro-sb-pill-free { font-size: 10px; font-weight: 500; background: #f0ebff; color: var(--purple-mid); padding: 3px 8px; border-radius: 100px; text-decoration: none; border: 0.5px solid rgba(128,0,226,0.25); white-space: nowrap; transition: all 0.2s; }
.cpro-sb-pill-free:hover { background: var(--purple); color: white; }
.cpro-sb-pill-busy { font-size: 10px; font-weight: 500; background: #fdf0f0; color: var(--red); padding: 3px 8px; border-radius: 100px; border: 0.5px solid rgba(180,30,30,0.2); white-space: nowrap; }
.cpro-sb-mins { font-size: 9px; color: var(--text-soft); }
.cpro-sb-legend { display: flex; gap: 0.8rem; padding: 0.6rem 1rem; border-top: 0.5px solid var(--border); background: var(--off); }
.cpro-sb-legend span { font-size: 10px; color: var(--text-soft); display: flex; align-items: center; gap: 4px; }

/* ── DISCLAIMER ── */
.cpro-disclaimer-bar { background: var(--off); border-top: 0.5px solid var(--border); padding: 1.5rem; }
.cpro-disclaimer-bar p { max-width: 900px; margin: 0 auto; font-size: 0.75rem; color: var(--text-soft); text-align: center; line-height: 1.75; }

/* ── STICKY CTA ── */
.cpro-sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--purple-dark); border-top: 0.5px solid rgba(255,255,255,0.1); padding: 0.9rem 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; box-shadow: 0 -8px 40px rgba(0,0,0,0.4); transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.cpro-sticky.visible { transform: translateY(0); }
.cpro-sticky-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); white-space: nowrap; }
.cpro-sticky-btn { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a0f00; font-weight: 600; font-size: 0.88rem; padding: 0.65rem 1.5rem; border-radius: 100px; text-decoration: none; white-space: nowrap; box-shadow: 0 4px 18px rgba(201,168,76,0.4); transition: transform 0.2s; }
.cpro-sticky-btn:hover { transform: scale(1.04); }
.cpro-sticky-btn::before { content: '📞 '; }
.cpro-sticky-btn-ghost { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.2); color: white; font-size: 0.85rem; font-weight: 500; padding: 0.65rem 1.3rem; border-radius: 100px; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.cpro-sticky-btn-ghost::before { content: '📞 '; }
.cpro-sticky-btn-ghost:hover { background: rgba(255,255,255,0.15); }
.cpro-sticky-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.35); font-size: 1.1rem; padding: 4px; line-height: 1; }

/* ── FOOTER ── */
.cpro-footer { background: var(--purple-dark); padding: 3rem 1.5rem 1.5rem; }
.cpro-footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.cpro-footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 0.4rem; }
.cpro-footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.cpro-footer-num { display: block; margin-bottom: 1.2rem; text-decoration: none; transition: opacity 0.2s; }
.cpro-footer-num:hover { opacity: 0.8; }
.cpro-footer-num-type { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; }
.cpro-footer-num-digits { font-size: 1.2rem; font-weight: 600; color: var(--white); display: block; }
.cpro-footer-num-price { font-size: 0.72rem; color: rgba(255,255,255,0.4); display: block; }
.cpro-footer-nav-list { list-style: none; padding: 0; }
.cpro-footer-nav-list li { margin-bottom: 0.6rem; }
.cpro-footer-nav-list a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color 0.2s; }
.cpro-footer-nav-list a:hover { color: var(--gold-light); }
.cpro-footer-disclaimer { border-top: 0.5px solid rgba(255,255,255,0.08); padding-top: 1.5rem; max-width: 1280px; margin: 0 auto; }
.cpro-footer-disclaimer p { font-size: 0.72rem; color: rgba(255,255,255,0.25); line-height: 1.75; margin-bottom: 0.5rem; }
.cpro-footer-copy { font-size: 0.68rem !important; color: rgba(255,255,255,0.18) !important; }

/* ── WIDGET SIDEBAR WP ── */
.cpro-widget { margin-bottom: 1rem; }
.cpro-widget-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.7rem; padding-bottom: 0.4rem; border-bottom: 0.5px solid var(--border); }

/* ── SCROLL REVEAL ── */
.cpro-reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.cpro-reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .cpro-content-wrap.cpro-with-sidebar { grid-template-columns: 1fr; }
  .cpro-sidebar { position: static; }
  .cpro-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media(max-width:820px) {
  .cpro-how-steps { grid-template-columns: 1fr 1fr; }
  .cpro-services-grid { grid-template-columns: 1fr 1fr; }
  .cpro-testi-grid { grid-template-columns: 1fr; }
  .cpro-seo-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cpro-cta-dual { grid-template-columns: 1fr; max-width: 360px; }
  .cpro-footer-inner { grid-template-columns: 1fr; }
  .cpro-nav { display: none; }
  .cpro-hamburger { display: flex; }
}
@media(max-width:580px) {
  .cpro-how-steps { grid-template-columns: 1fr; }
  .cpro-services-grid { grid-template-columns: 1fr; }
  .cpro-trust { gap: 1.5rem; }
}