/*
 * BeastPick – Stylesheet WordPress
 * File: beastpick-style.css
 * Caricare nella cartella del tema attivo (o child theme)
 * Versione: 1.0.0
 */

/* =========================================================
   RESET & TOKENS
   ========================================================= */
.beastpick-page *,
.beastpick-page *::before,
.beastpick-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bp-dark:    #1E2330;
  --bp-darker:  #141824;
  --bp-gold:    #F5A623;
  --bp-gold-lt: #FFD27F;
  --bp-teal:    #3ECFAB;
  --bp-blue:    #2B82D9;
  --bp-white:   #F7F8FC;
  --bp-muted:   #8A90A0;
  --bp-card:    #242A3A;
  --bp-border:  rgba(255,255,255,0.07);
  --bp-grad:    linear-gradient(135deg, #3ECFAB 0%, #2B82D9 100%);
  --bp-font-h:  'Outfit', sans-serif;
  --bp-font-b:  'DM Sans', sans-serif;
  --bp-radius:  16px;
  --bp-shadow:  0 8px 40px rgba(0,0,0,0.35);
  --bp-section-pad: 80px 0;
}

/* =========================================================
   BODY / PAGE
   ========================================================= */
.beastpick-page {
  font-family: var(--bp-font-b);
  background: var(--bp-darker);
  color: var(--bp-white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Override eventuali stili del tema */
.beastpick-page .site-header,
.beastpick-page .site-footer,
.beastpick-page #wpadminbar + .site-header { display: none !important; }

/* Noise texture background */
.beastpick-page::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: .4;
}

.beastpick-page > * { position: relative; z-index: 1; }

/* =========================================================
   UTILITIES
   ========================================================= */
.bp-container  { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.bp-white      { color: var(--bp-white); }
.bp-gold       { color: var(--bp-gold); }
.bp-teal       { color: var(--bp-teal); }
.bp-blue       { color: var(--bp-blue); }

.bp-tag {
  display: inline-block;
  font-family: var(--bp-font-h);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(62,207,171,.15);
  color: var(--bp-teal);
  border: 1px solid rgba(62,207,171,.3);
  padding: 4px 12px; border-radius: 100px;
}
.bp-tag--gold {
  background: rgba(245,166,35,.12);
  color: var(--bp-gold);
  border-color: rgba(245,166,35,.3);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.bp-btn {
  display: inline-block;
  font-family: var(--bp-font-h); font-weight: 700; font-size: .95rem;
  padding: 13px 28px; border-radius: 100px;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  text-decoration: none; cursor: pointer; border: none;
  white-space: nowrap;
}
.bp-btn--grad {
  background: var(--bp-grad); color: #fff;
  box-shadow: 0 4px 24px rgba(43,130,217,.35);
}
.bp-btn--grad:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(43,130,217,.5); color: #fff; }
.bp-btn--gold { background: var(--bp-gold); color: var(--bp-darker); }
.bp-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(245,166,35,.4); color: var(--bp-darker); }
.bp-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--bp-white);
}
.bp-btn--outline:hover { border-color: var(--bp-teal); background: rgba(62,207,171,.08); color: var(--bp-white); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes bp-fade-up {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.bp-fade-up  { animation: bp-fade-up .7s ease both; }
.bp-delay-1  { animation-delay: .15s; }
.bp-delay-2  { animation-delay: .30s; }
.bp-delay-3  { animation-delay: .45s; }

/* =========================================================
   NAVBAR
   ========================================================= */
.bp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,24,36,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bp-border);
}
.bp-nav__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; max-width: 1120px;
  margin: 0 auto; padding: 0 20px;
}
.bp-nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.bp-nav__logo img { height: 40px; width: auto; }
.bp-nav__logo-txt {
  font-family: var(--bp-font-h); font-weight: 900; font-size: 1.3rem;
}
.bp-nav__claim {
  font-family: var(--bp-font-h); font-size: .82rem;
  font-weight: 600; letter-spacing: .02em; color: var(--bp-blue);
}
.bp-nav__claim .bp-gold { color: var(--bp-gold); }
.bp-nav__cta { padding: 8px 20px; font-size: .85rem; }

/* =========================================================
   HERO
   ========================================================= */
.bp-hero {
  padding: 80px 20px 100px;
  text-align: center; overflow: hidden; position: relative;
}
.bp-hero::after {
  content: ''; position: absolute;
  bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(62,207,171,.18) 0%, transparent 70%);
  pointer-events: none;
}
.bp-hero__eyebrow { margin-bottom: 20px; }
.bp-hero__title {
  font-family: var(--bp-font-h); font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 24px;
}
.bp-hero__sub {
  max-width: 620px; margin: 0 auto 40px;
  font-size: 1.1rem; color: rgba(247,248,252,.72); font-weight: 300;
}
.bp-hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.bp-trust-bar {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: center; align-items: center;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--bp-border);
}
.bp-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--bp-muted);
}

/* =========================================================
   SECTIONS
   ========================================================= */
.bp-section { padding: var(--bp-section-pad); }
.bp-section--alt { background: rgba(30,35,48,.6); }

.bp-section__head { text-align: center; margin-bottom: 48px; }
.bp-section__head h2 {
  font-family: var(--bp-font-h); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15; margin: 12px 0 16px;
  color: var(--bp-white);
}
.bp-section__head p { color: rgba(247,248,252,.65); max-width: 560px; margin: 0 auto; }

/* =========================================================
   TOOL BOX
   ========================================================= */
.bp-tool-box {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius);
  padding: 40px 28px;
  box-shadow: var(--bp-shadow);
  position: relative; overflow: hidden;
}
.bp-tool-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--bp-grad);
}
.bp-tool-box__label {
  font-family: var(--bp-font-h); font-size: .8rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bp-teal); margin-bottom: 20px;
}
.bp-demo-row { display: flex; gap: 12px; flex-wrap: wrap; }
.bp-input {
  flex: 1 1 200px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--bp-white);
  font-family: var(--bp-font-b); font-size: 1rem;
  outline: none;
  transition: border-color .2s;
  appearance: none;
  align-self: flex-start;
  width: 100%;
}

/* Campi dentro griglie CF: altezza fissa, no flex-grow */
.bp-cf-form-grid .bp-input {
  flex: none;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding: 0 14px;
  line-height: 44px;
  font-size: .9rem;
  box-sizing: border-box;
}
.bp-cf-form-grid select.bp-input {
  line-height: normal;
  padding: 0 32px 0 14px;
  cursor: pointer;
}
.bp-input::placeholder { color: var(--bp-muted); }
.bp-input:focus { border-color: var(--bp-teal); }
.bp-input option { background: var(--bp-dark); color: var(--bp-white); }
.bp-demo-submit { flex-shrink: 0; border-radius: 10px; }
.bp-tool-box__note {
  margin-top: 14px; font-size: .82rem;
  color: var(--bp-muted); font-style: italic;
}
.bp-tool-box__note code {
  background: rgba(255,255,255,.08); padding: 2px 6px;
  border-radius: 4px; font-family: 'Courier New', monospace;
  font-style: normal; color: var(--bp-gold);
}

/* =========================================================
   STEPS
   ========================================================= */
.bp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.bp-step-card {
  background: var(--bp-card); border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius); padding: 32px 24px;
  transition: transform .25s, box-shadow .25s;
}
.bp-step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.bp-step-num {
  font-family: var(--bp-font-h); font-size: 3rem;
  font-weight: 900; line-height: 1;
  background: var(--bp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.bp-step-card h3 {
  font-family: var(--bp-font-h); font-size: 1.1rem;
  font-weight: 700; margin-bottom: 10px; color: var(--bp-white);
}
.bp-step-card p { font-size: .9rem; color: rgba(247,248,252,.65); }

/* =========================================================
   TRANSPARENCY
   ========================================================= */
.bp-transp-box {
  background: linear-gradient(135deg,rgba(43,130,217,.1),rgba(62,207,171,.07));
  border: 1px solid rgba(62,207,171,.2);
  border-radius: var(--bp-radius); padding: 48px 40px;
}
.bp-transp-box h3 {
  font-family: var(--bp-font-h); font-size: 1.15rem;
  font-weight: 700; color: var(--bp-white); margin-bottom: 8px;
}
.bp-transp-box__sub { font-size: .9rem; color: rgba(247,248,252,.65); }

.bp-flow {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; justify-content: center; margin: 32px 0;
}
.bp-flow__node {
  background: var(--bp-card); border: 1px solid var(--bp-border);
  border-radius: 12px; padding: 18px 22px;
  text-align: center; min-width: 140px;
}
.bp-flow__icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.bp-flow__node strong {
  display: block; font-family: var(--bp-font-h); font-size: .82rem;
  font-weight: 700; letter-spacing: .04em; color: var(--bp-white);
}
.bp-flow__node small { display: block; font-size: .72rem; color: var(--bp-muted); margin-top: 4px; }
.bp-flow__arrow { font-size: 1.5rem; color: var(--bp-teal); font-weight: 900; }

.bp-disclaimer {
  background: rgba(245,166,35,.08); border: 1px solid rgba(245,166,35,.25);
  border-radius: 12px; padding: 20px 24px;
  margin-top: 28px; display: flex; gap: 14px; align-items: flex-start;
}
.bp-disclaimer__ico { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.bp-disclaimer p { font-size: .88rem; color: rgba(247,248,252,.75); }
.bp-disclaimer strong { color: var(--bp-gold); }
.bp-disclaimer a { color: var(--bp-teal); }

/* =========================================================
   ALGO TABLE
   ========================================================= */
.bp-table-wrap { overflow-x: auto; }
.bp-algo-table {
  width: 100%; border-collapse: collapse; font-size: .88rem;
}
.bp-algo-table th {
  background: rgba(255,255,255,.06);
  font-family: var(--bp-font-h); font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 16px; text-align: left; color: var(--bp-muted);
  border-bottom: 1px solid var(--bp-border);
}
.bp-algo-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--bp-border);
  color: rgba(247,248,252,.82); vertical-align: middle;
}
.bp-algo-table tr:last-child td { border-bottom: none; }
.bp-pct {
  font-family: var(--bp-font-h); font-weight: 800;
  font-size: 1.05rem; color: var(--bp-teal);
}
.bp-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 100px; font-size: .72rem;
  font-weight: 700; letter-spacing: .05em;
}
.bp-badge--verified { background: rgba(62,207,171,.15);  color: var(--bp-teal); }
.bp-badge--partial  { background: rgba(245,166,35,.15);  color: var(--bp-gold); }
.bp-badge--manual   { background: rgba(255,80,80,.12);   color: #FF7070; }
.bp-table-note { margin-top: 14px; font-size: .82rem; color: var(--bp-muted); }

/* =========================================================
   CF BEASTPICKED
   ========================================================= */
.bp-cf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.bp-cf-card {
  background: var(--bp-card); border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
}
.bp-cf-card:hover {
  transform: translateY(-4px); border-color: rgba(62,207,171,.35);
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
}
.bp-cf-card__top { display: flex; align-items: center; gap: 14px; }
.bp-cf-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bp-grad); display: flex;
  align-items: center; justify-content: center;
  font-family: var(--bp-font-h); font-weight: 800;
  font-size: 1.2rem; color: #fff; flex-shrink: 0;
}
.bp-cf-avatar--orange { background: linear-gradient(135deg,#F5A623,#FF6B35); }
.bp-cf-avatar--purple { background: linear-gradient(135deg,#2B82D9,#8B5CF6); }
.bp-cf-name { font-family: var(--bp-font-h); font-size: 1.02rem; font-weight: 700; color: var(--bp-white); }
.bp-cf-city { font-size: .8rem; color: var(--bp-muted); }
.bp-cf-score { display: flex; align-items: center; gap: 10px; }
.bp-cf-score__label { font-size: .78rem; color: var(--bp-muted); white-space: nowrap; }
.bp-cf-bar {
  flex: 1; height: 6px;
  background: rgba(255,255,255,.1); border-radius: 100px; overflow: hidden;
}
.bp-cf-bar__fill {
  height: 100%; border-radius: 100px;
  background: var(--bp-grad); width: 0;
}
.bp-cf-score__val {
  font-family: var(--bp-font-h); font-size: .88rem;
  font-weight: 700; color: var(--bp-teal); white-space: nowrap;
}
.bp-cf-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bp-cf-tag {
  font-size: .72rem; font-weight: 600;
  background: rgba(255,255,255,.07); border: 1px solid var(--bp-border);
  border-radius: 100px; padding: 3px 10px; color: rgba(247,248,252,.7);
}
.bp-cf-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--bp-font-h); font-size: .82rem; font-weight: 600;
  color: var(--bp-teal); transition: gap .2s; text-decoration: none;
}
.bp-cf-link:hover { gap: 10px; color: var(--bp-teal); }
.bp-cf-cta { text-align: center; margin-top: 40px; }

/* =========================================================
   CITIES
   ========================================================= */
.bp-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px; margin-top: 32px;
}
.bp-city-chip {
  background: var(--bp-card); border: 1px solid var(--bp-border);
  border-radius: 10px; padding: 14px 18px;
  text-align: center; text-decoration: none;
  transition: border-color .2s, background .2s;
  display: block;
}
.bp-city-chip:hover {
  border-color: rgba(62,207,171,.4);
  background: rgba(62,207,171,.06);
}
.bp-city-chip span {
  display: block; font-family: var(--bp-font-h);
  font-size: .9rem; font-weight: 600; color: var(--bp-white);
}
.bp-city-chip small { font-size: .73rem; color: var(--bp-muted); }

/* =========================================================
   FAQ
   ========================================================= */
.bp-faq { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.bp-faq__item {
  background: var(--bp-card); border: 1px solid var(--bp-border);
  border-radius: 12px; overflow: hidden;
}
.bp-faq__item[open] { border-color: rgba(62,207,171,.25); }
.bp-faq__q {
  padding: 20px 24px; font-family: var(--bp-font-h);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  gap: 12px; color: var(--bp-white);
}
.bp-faq__q::-webkit-details-marker { display: none; }
.bp-faq__q::after {
  content: '+'; font-size: 1.4rem; color: var(--bp-teal);
  flex-shrink: 0; transition: transform .2s;
}
.bp-faq__item[open] .bp-faq__q::after { transform: rotate(45deg); }
.bp-faq__a {
  padding: 0 24px 20px; font-size: .9rem;
  color: rgba(247,248,252,.7); line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */
.bp-footer {
  background: var(--bp-dark);
  border-top: 1px solid var(--bp-border);
  padding: 48px 0 0;
}
.bp-footer__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.bp-footer__brand img { height: 40px; margin-bottom: 14px; }
.bp-footer__logo-txt {
  font-family: var(--bp-font-h); font-weight: 900;
  font-size: 1.4rem; margin-bottom: 14px;
}
.bp-footer__brand p { font-size: .85rem; color: var(--bp-muted); max-width: 260px; }
.bp-footer__col h4 {
  font-family: var(--bp-font-h); font-size: .82rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bp-muted); margin-bottom: 14px;
}
.bp-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.bp-footer__col ul li a {
  font-size: .88rem; color: rgba(247,248,252,.6); text-decoration: none;
  transition: color .2s;
}
.bp-footer__col ul li a:hover { color: var(--bp-teal); }
.bp-footer__bottom {
  padding: 24px 20px 32px;
  border-top: 1px solid var(--bp-border);
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  max-width: 1120px; margin: 0 auto;
}
.bp-footer__bottom p { font-size: .78rem; color: var(--bp-muted); }
.bp-footer__legal { display: flex; gap: 20px; }
.bp-footer__legal a {
  font-size: .78rem; color: var(--bp-muted);
  text-decoration: none; transition: color .2s;
}
.bp-footer__legal a:hover { color: var(--bp-teal); }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.bp-cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bp-card); border-top: 1px solid var(--bp-border);
  padding: 18px 24px;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  box-shadow: 0 -8px 30px rgba(0,0,0,.4);
}
.bp-cookie p { font-size: .85rem; color: rgba(247,248,252,.75); max-width: 640px; }
.bp-cookie a { color: var(--bp-teal); }
.bp-cookie__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.bp-cookie__accept {
  background: var(--bp-teal); color: var(--bp-darker);
  font-family: var(--bp-font-h); font-weight: 700; font-size: .88rem;
  padding: 9px 22px; border-radius: 100px; border: none; cursor: pointer;
}
.bp-cookie__accept:hover { opacity: .85; }
.bp-cookie__decline {
  background: transparent; color: var(--bp-muted);
  font-family: var(--bp-font-h); font-size: .85rem;
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--bp-border); cursor: pointer;
}
.bp-cookie__decline:hover { color: var(--bp-white); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .bp-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .bp-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .bp-flow { flex-direction: column; }
  .bp-flow__arrow { transform: rotate(90deg); }
  .bp-nav__claim { display: none; }
  .bp-hero__title { font-size: 2.1rem; }
  .bp-transp-box { padding: 28px 20px; }
  .bp-hero { padding: 56px 20px 72px; }
}

@media (max-width: 480px) {
  .bp-tool-box { padding: 28px 16px; }
  .bp-demo-row { flex-direction: column; }
  .bp-demo-submit { width: 100%; }
}
/* ============================================================
   BEASTPICK — CF SLIDER v5
   Sostituire TUTTA la sezione slider in beastpick-style.css
   ============================================================ */

#cf-slider {
  padding: 64px 0 52px !important;
  background: #141824 !important;
  position: relative !important;
  overflow: visible !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
}

/* HEAD */
#cf-slider .bp-cf-slider-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 40px !important;
  flex-wrap: wrap !important;
}
#cf-slider .bp-cf-slider-head > div { flex: 1 !important; }
#cf-slider .bp-cf-slider-head h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
  font-weight: 800 !important;
  color: #F7F8FC !important;
  margin: 10px 0 8px !important;
  line-height: 1.15 !important;
}
#cf-slider .bp-cf-slider-head p {
  color: rgba(247,248,252,.6) !important;
  font-size: .92rem !important;
  margin: 0 !important;
}
#cf-slider .bp-slider-all {
  display: inline-block !important;
  padding: 10px 22px !important;
  border: 1.5px solid rgba(255,255,255,.25) !important;
  border-radius: 100px !important;
  color: #F7F8FC !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: .88rem !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: border-color .2s, background .2s !important;
}
#cf-slider .bp-slider-all:hover {
  border-color: #3ECFAB !important;
  background: rgba(62,207,171,.08) !important;
  color: #F7F8FC !important;
}

/* WRAP */
#cf-slider .bp-cf-slider-wrap {
  position: relative !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  padding: 0 60px !important;
}

/* TRACK */
#cf-slider .bp-cf-track {
  position: relative !important;
  overflow: hidden !important;
}

/* SLIDES */
#cf-slider .bp-cf-slide {
  display: none !important;
}
#cf-slider .bp-cf-slide--active {
  display: block !important;
  animation: bpFadeUp .45s ease both !important;
}
@keyframes bpFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CARD */
#cf-slider .bp-cf-slide__inner {
  background: #242A3A !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 20px !important;
  padding: 32px 28px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.5) !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}
#cf-slider .bp-cf-slide__inner::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: linear-gradient(135deg, #3ECFAB, #2B82D9) !important;
}

/* IDENTITY */
#cf-slider .bp-cf-slide__identity {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

/* AVATAR — con foto reale + fallback iniziali */
#cf-slider .bp-cf-avatar {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #3ECFAB, #2B82D9) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 16px rgba(62,207,171,.3) !important;
  overflow: hidden !important;
  position: relative !important;
  border: 2.5px solid #3ECFAB !important;
}
#cf-slider .bp-cf-avatar--orange { background: linear-gradient(135deg,#F5A623,#FF6B35) !important; border-color: #F5A623 !important; box-shadow: 0 4px 16px rgba(245,166,35,.3) !important; }
#cf-slider .bp-cf-avatar--purple { background: linear-gradient(135deg,#2B82D9,#8B5CF6) !important; border-color: #8B5CF6 !important; box-shadow: 0 4px 16px rgba(139,92,246,.3) !important; }
#cf-slider .bp-cf-avatar--teal   { background: linear-gradient(135deg,#0EA5E9,#3ECFAB) !important; }
#cf-slider .bp-cf-avatar--red    { background: linear-gradient(135deg,#EF4444,#F97316) !important; border-color: #EF4444 !important; }

/* Foto reale */
#cf-slider .bp-cf-avatar__photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 50% !important;
  display: block !important;
}


#cf-slider .bp-cf-slide__name {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #F7F8FC !important;
  margin: 0 0 5px !important;
  line-height: 1.2 !important;
}
#cf-slider .bp-cf-slide__city {
  font-size: .84rem !important;
  color: #8A90A0 !important;
  margin: 0 !important;
}

/* SCORE BAR */
#cf-slider .bp-cf-slide__score {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
#cf-slider .bp-cf-score__label {
  font-size: .74rem !important;
  color: #8A90A0 !important;
  white-space: nowrap !important;
  font-family: 'Outfit', sans-serif !important;
  letter-spacing: .04em !important;
}
#cf-slider .bp-cf-bar {
  flex: 1 !important;
  height: 7px !important;
  background: rgba(255,255,255,.08) !important;
  border-radius: 100px !important;
  overflow: hidden !important;
}
#cf-slider .bp-cf-bar__fill {
  height: 100% !important;
  border-radius: 100px !important;
  background: linear-gradient(90deg, #3ECFAB, #2B82D9) !important;
  width: 0 !important;
  transition: width 1.2s cubic-bezier(.4,0,.2,1) !important;
}
#cf-slider .bp-cf-score__val {
  font-family: 'Outfit', sans-serif !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  color: #3ECFAB !important;
  white-space: nowrap !important;
}

/* TAGS */
#cf-slider .bp-cf-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
}
#cf-slider .bp-cf-tag {
  font-size: .73rem !important;
  font-weight: 600 !important;
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 100px !important;
  padding: 4px 12px !important;
  color: rgba(247,248,252,.75) !important;
}

/* LINK */
#cf-slider .bp-cf-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: .88rem !important;
  font-weight: 700 !important;
  color: #3ECFAB !important;
  text-decoration: none !important;
  transition: gap .2s !important;
  align-self: flex-start !important;
}
#cf-slider .bp-cf-link:hover { gap: 12px !important; color: #3ECFAB !important; }

/* FRECCE */
#cf-slider .bp-cf-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #242A3A !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: #F7F8FC !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background .2s, border-color .2s !important;
  z-index: 10 !important;
  padding: 0 !important;
}
#cf-slider .bp-cf-arrow:hover {
  background: rgba(62,207,171,.15) !important;
  border-color: #3ECFAB !important;
}
#cf-slider .bp-cf-arrow--prev { left: 0 !important; }
#cf-slider .bp-cf-arrow--next { right: 0 !important; }

/* DOTS */
#cf-slider .bp-cf-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 28px !important;
}
#cf-slider .bp-cf-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 100px !important;
  background: rgba(255,255,255,.2) !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background .25s, width .3s !important;
}
#cf-slider .bp-cf-dot--active {
  background: #3ECFAB !important;
  width: 26px !important;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  #cf-slider .bp-cf-slider-wrap { padding: 0 !important; }
  #cf-slider .bp-cf-arrow { display: none !important; }
  #cf-slider .bp-cf-slide__inner { padding: 22px 18px !important; }
  #cf-slider .bp-cf-slider-head { flex-direction: column !important; align-items: flex-start !important; }
}
.bp-hero__logo-img {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.bp-hero__logo-img img {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
#tool {
  background: linear-gradient(160deg, #0d1526 0%, #111e35 60%, #141824 100%) !important;
  border-top: 3px solid #3ECFAB !important;
  border-bottom: 1px solid rgba(62,207,171,.15) !important;
  position: relative !important;
}
#tool::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, #3ECFAB, #2B82D9, transparent) !important;
}

/* ── TOOL BOX: card evidenziata ── */
.bp-tool-box {
  background: rgba(62,207,171,.04) !important;
  border: 1.5px solid rgba(62,207,171,.3) !important;
  box-shadow: 0 0 40px rgba(62,207,171,.08), inset 0 0 40px rgba(62,207,171,.03) !important;
}
.bp-tool-box::before {
  background: linear-gradient(90deg, #3ECFAB, #2B82D9) !important;
}

/* Label del tool box */
.bp-tool-box__label {
  color: #3ECFAB !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
}

/* ── FORM PLUGIN cft: sezioni più calde ── */
#cft-wrap .cft-section {
  background: rgba(43,130,217,.04) !important;
  border: 1px solid rgba(43,130,217,.12) !important;
  border-radius: 14px !important;
  padding: 20px !important;
  margin-bottom: 12px !important;
}
#cft-wrap .cft-section:hover {
  border-color: rgba(62,207,171,.25) !important;
  background: rgba(62,207,171,.04) !important;
  transition: all .25s !important;
}

/* Step number più grande e luminoso */
#cft-wrap .cft-snum {
  width: 32px !important;
  height: 32px !important;
  font-size: 14px !important;
  background: linear-gradient(135deg, #3ECFAB, #2B82D9) !important;
  box-shadow: 0 0 16px rgba(62,207,171,.5) !important;
}

/* ── CURSORE RETRÒ LAMPEGGIANTE ── */
@keyframes bpCursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Pseudo-elemento cursore su input vuoti */
#cft-wrap .cft-ti:placeholder-shown,
#cft-wrap .cft-ta textarea:placeholder-shown {
  caret-color: #3ECFAB !important;
  border-color: rgba(62,207,171,.35) !important;
}

/* Box-shadow pulsante sui campi vuoti */
@keyframes bpFieldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,207,171,.0); }
  50%       { box-shadow: 0 0 0 3px rgba(62,207,171,.2); }
}

#cft-wrap .cft-ti:placeholder-shown:not(:focus),
#cft-wrap .cft-ta textarea:placeholder-shown:not(:focus) {
  animation: bpFieldPulse 2.5s ease-in-out infinite !important;
}

/* Cursore retrò verde smeraldo lampeggiante nel placeholder */
#cft-wrap .cft-ti::placeholder,
#cft-wrap .cft-ta textarea::placeholder {
  color: transparent !important;
}

/* Overlay cursore tramite position relative sul wrapper */
#cft-wrap .cft-ti:placeholder-shown::before {
  content: '█' !important;
  color: #3ECFAB !important;
  animation: bpCursorBlink .8s step-end infinite !important;
  position: absolute !important;
}

/* ── APPROCCIO ALTERNATIVO: JS cursor ──
   Più affidabile cross-browser — aggiunto sotto via <script> */

/* Focus state amplificato */
#cft-wrap .cft-ti:focus,
#cft-wrap .cft-ta textarea:focus {
  border-color: #3ECFAB !important;
  background: rgba(62,207,171,.06) !important;
  box-shadow: 0 0 0 3px rgba(62,207,171,.2), 0 0 20px rgba(62,207,171,.1) !important;
  animation: none !important;
}

/* ── CTA BUTTON: più grande e luminoso ── */
#cft-wrap #cft-gen {
  background: linear-gradient(135deg, #2B82D9 0%, #3ECFAB 100%) !important;
  border-radius: 100px !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  padding: 18px 48px !important;
  box-shadow: 0 4px 32px rgba(62,207,171,.4), 0 0 60px rgba(62,207,171,.15) !important;
  letter-spacing: .02em !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Shimmer animato sul bottone */
@keyframes bpShimmer {
  0%   { left: -100%; }
  60%, 100% { left: 160%; }
}
#cft-wrap #cft-gen::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -100% !important;
  width: 60% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent) !important;
  animation: bpShimmer 2.5s ease-in-out infinite !important;
}

#cft-wrap #cft-gen:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 48px rgba(62,207,171,.6) !important;
}