/* perche.css — stili esclusivi per numeri e SWOT
   tutto il resto (nav, hero, sezioni, animazioni) viene da business.css */

/* ── NUMERI ── */
.numeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.numero-card {
  background: var(--dark3);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

.numero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(58,90,64,.15);
}

.numero-val {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}

.numero-desc {
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  color: rgba(26,46,31,0.6);
  line-height: 1.55;
}

/* ── SWOT ── */
.swot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.swot-quadrant {
  border-radius: 20px;
  padding: clamp(20px, 2.5vw, 32px);
  border: 1.5px solid transparent;
}

.swot-s { background: rgba(58,90,64,0.05);  border-color: rgba(58,90,64,0.2); }
.swot-w { background: rgba(181,101,29,0.05); border-color: rgba(181,101,29,0.2); }
.swot-o { background: rgba(81,119,81,0.05);  border-color: rgba(81,119,81,0.2); }
.swot-t { background: rgba(139,34,34,0.05);  border-color: rgba(139,34,34,0.2); }

.swot-quad-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26,46,31,0.1);
}

.swot-emoji { font-size: 1.5rem; flex-shrink: 0; }

.swot-quad-head h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
  color: var(--white);
}

.swot-quad-head p {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  font-weight: 600;
}

.swot-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.swot-card {
  background: var(--dark);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(26,46,31,0.07);
  transition: transform .2s, box-shadow .2s;
}

.swot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(58,90,64,.1);
}

.swot-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.swot-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 50px;
  flex-shrink: 0;
}

.swot-tag-s { background: rgba(58,90,64,0.15);  color: #3a5a40; }
.swot-tag-w { background: rgba(181,101,29,0.15); color: #b5651d; }
.swot-tag-o { background: rgba(81,119,81,0.15);  color: #517751; }
.swot-tag-t { background: rgba(139,34,34,0.15);  color: #8b2222; }

.swot-card-top h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.swot-card > p {
  font-size: 0.82rem;
  color: rgba(26,46,31,0.65);
  line-height: 1.6;
  margin-bottom: 10px;
}

.swot-hook {
  display: flex;
  gap: 9px;
  background: rgba(26,46,31,0.04);
  border-radius: 10px;
  padding: 10px 12px;
  border-left: 3px solid rgba(58,90,64,0.3);
}

.swot-w .swot-hook { border-left-color: rgba(181,101,29,0.4); }
.swot-o .swot-hook { border-left-color: rgba(81,119,81,0.4); }
.swot-t .swot-hook { border-left-color: rgba(139,34,34,0.4); }

.hook-icon { font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }

.swot-hook p {
  font-size: 0.8rem;
  color: rgba(26,46,31,0.7);
  line-height: 1.6;
  margin: 0;
}

/* ── PERSONAS ── */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.persona-card {
  background: var(--dark2);
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid rgba(26,46,31,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .2s;
}

.persona-card:hover { transform: translateY(-5px); }

.persona-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.persona-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.persona-f { background: rgba(236,72,153,0.1); }
.persona-m { background: rgba(58,90,64,0.1); }

.persona-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.persona-loc {
  font-size: 0.78rem;
  color: var(--cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.persona-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 50px;
}

.persona-badge-lost {
  background: rgba(139,34,34,0.1);
  color: #8b2222;
}

.persona-facts {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.persona-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(26,46,31,0.75);
  line-height: 1.5;
}

.persona-facts li i {
  color: var(--cyan);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.persona-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  border-left: 3px solid var(--cyan);
  padding-left: 16px;
  margin: 0;
}

.persona-fitora {
  background: rgba(58,90,64,0.06);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(58,90,64,0.15);
}

.persona-fitora-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.persona-fitora p {
  font-size: 0.85rem;
  color: rgba(26,46,31,0.7);
  line-height: 1.6;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .numeri-grid  { grid-template-columns: 1fr; }
  .swot-grid    { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .persona-badge { margin-left: 0; }
}

@media (max-width: 480px) {
  .numero-card { padding: 24px 20px; }
  .numero-val  { font-size: 2rem; }
}

/* ── SWOT TITLE ── */
.swot-title-block {
  text-align: center;
  padding: clamp(48px, 8vw, 80px) 0 clamp(24px, 4vw, 40px);
}
.swot-title-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.swot-title-text {
  font-family: 'Public Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: -2px;
  line-height: 1;
  background: var(--grad-t);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.swot-title-sub {
  font-size: clamp(.75rem, 2vw, .95rem);
  color: var(--dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
