/* =============================================
   DONAZIONI 2.0
   ============================================= */

/* === HERO SPLIT === */
.don-hero-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 100vh;
}

/* LEFT */
.don-hero-left {
  background: var(--green-dark);
  padding: calc(var(--nav-height) + 64px) 72px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.don-hero-left::before {
  content: '5%';
  position: absolute;
  bottom: -60px; right: -20px;
  font-family: var(--font-heading);
  font-size: 22rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.don-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-light, #52b788);
  margin-bottom: 20px;
  display: block;
}
.don-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}
.don-hero-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  margin-bottom: 40px;
}
.don-hero-desc strong { color: var(--white); }

/* Stats row */
.don-hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 44px;
}
.don-hero-stat span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.don-hero-stat small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}

/* CTA buttons */
.don-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.don-btn-outline-w {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.don-btn-outline-w:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.don-hero-bread {
  margin-top: 40px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.don-hero-bread a { color: rgba(255,255,255,0.45); }

/* RIGHT */
.don-hero-right {
  background: linear-gradient(160deg, #2d4a3e 0%, #1a2f26 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 60px 40px;
}

/* CF card */
.don-hero-cf-card {
  background: var(--white);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 48px 120px rgba(0,0,0,0.32);
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}
.don-hero-cf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), #e8c96a);
}
.don-cf-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #b8922c);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 7px 28px;
  border-radius: 30px;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.don-cf-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.don-cf-card-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 12px;
  word-break: break-all;
}
.don-cf-card-org {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 28px;
}
.don-cf-card-check {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--green-primary);
  font-weight: 600;
  line-height: 1.4;
}
.don-cf-card-check i { flex-shrink: 0; }


/* === IMPACT QUOTE === */
.don-impact {
  background: var(--green-primary);
  padding: 52px 24px;
  text-align: center;
}
.don-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--green-dark);
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}
.don-quote::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -10px;
  font-size: 5rem;
  color: rgba(30,58,47,0.30);
  line-height: 1;
  font-style: normal;
}


/* === 5x1000 INTRO === */
.don-5x1000-intro {
  background: var(--cream);
  padding: 96px 0 80px;
}
.don-5x1000-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.don-5x1000-text h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  color: var(--green-dark);
}
.don-5x1000-text p {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 1rem;
}
.don-zero-cost {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(141,198,63,0.08);
  border-left: 4px solid var(--green-primary);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--green-dark);
  line-height: 1.5;
}
.don-zero-cost i { color: var(--green-primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

/* CF Display Box */
.don-cf-box {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 24px 72px rgba(0,0,0,0.10);
  text-align: center;
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
}
.don-cf-box::before {
  content: 'CF';
  position: absolute;
  top: -20px; right: -10px;
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  user-select: none;
}
.don-cf-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 16px;
}
.don-cf-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 10px;
  word-break: break-all;
}
.don-cf-name {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 28px;
}
.don-cf-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-primary);
  color: var(--green-dark);
  border: none;
  border-radius: 0;
  padding: 12px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, color 0.25s ease;
}
.don-cf-copy:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }
.don-cf-copy.copied { background: #2e7d32; }


/* === STEPS SECTION === */
.don-steps-section {
  background: var(--tortora-light);
  padding: 88px 0 96px;
}
.don-steps-header {
  text-align: center;
  margin-bottom: 60px;
}
.don-steps-header h2 { color: var(--green-dark); font-size: clamp(2rem, 4vw, 3.2rem); }

.don-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.don-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--tortora);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.don-step:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.don-step-num {
  position: absolute;
  top: -18px; right: 14px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(141,198,63,0.08);
  line-height: 1;
  user-select: none;
}
.don-step-icon {
  width: 52px; height: 52px;
  background: var(--green-primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.don-step h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.don-step p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}
.don-step-cf {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--caffe);
  background: rgba(123,80,56,0.08);
  border: 1px solid rgba(123,80,56,0.25);
  border-radius: 8px;
  padding: 6px 14px;
}

/* Arrow between steps */
.don-step-arrow {
  color: var(--tortora);
  font-size: 1.1rem;
  padding: 0 8px;
  margin-top: 56px;
  flex-shrink: 0;
}


/* === NOTA IMPORTANTE === */
.don-alert-section {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D0 100%);
  padding: 64px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.don-alert-box {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.don-alert-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
}
.don-alert-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #7a5a00;
  margin-bottom: 12px;
  line-height: 1.2;
}
.don-alert-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a4200;
  margin-bottom: 12px;
}
.don-alert-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #7a5a00;
  margin: 8px 0 14px;
}
.don-alert-name i { color: var(--gold); }
.don-alert-sub {
  font-size: 0.86rem !important;
  color: #7a6030 !important;
}
.don-alert-sub a { color: var(--green-primary); font-weight: 600; }


/* === BONIFICO === */
.don-bonifico-section {
  background: var(--white);
  padding: 88px 0;
}
.don-bonifico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.don-bonifico-text h2 { color: var(--green-dark); font-size: clamp(2rem, 4vw, 3.2rem); }
.don-bonifico-text p { color: var(--text-mid); line-height: 1.75; }

.don-bonifico-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.don-bonifico-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}
.don-bonifico-row:last-child { border-bottom: none; }
.don-bonifico-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 7px;
}
.don-bonifico-label i { color: var(--green-primary); }
.don-bonifico-value {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.5;
}
.don-bonifico-cf {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.don-bonifico-iban-row { background: rgba(141,198,63,0.05); }
.don-bonifico-iban-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light) !important;
  font-style: italic;
  font-weight: 400 !important;
  font-size: 0.88rem !important;
}
.don-bonifico-iban-placeholder i { color: var(--green-mid); }
.don-bonifico-causale {
  font-style: italic;
  font-size: 0.88rem !important;
  color: var(--text-mid) !important;
  font-weight: 400 !important;
}


/* === CONTACT STRIP === */
.don-contact-strip {
  background: var(--tortora-light);
  padding: 60px 0;
  border-top: 3px solid var(--caffe);
}
.don-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.don-contact-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.don-contact-text p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 460px;
}
.don-contact-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.don-contact-btns .btn { display: inline-flex; align-items: center; gap: 8px; }


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .don-5x1000-intro-grid { gap: 48px; }
  .don-bonifico-grid { gap: 48px; }
  .don-steps { padding: 0 24px; }
}

@media (max-width: 900px) {
  .don-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .don-hero-left {
    padding: calc(var(--nav-height) + 48px) 32px 48px;
    text-align: center;
    align-items: center;
  }
  .don-hero-left::before { display: none; }
  .don-hero-desc { max-width: 100%; }
  .don-hero-stats { justify-content: center; }
  .don-hero-right { padding: 48px 24px 60px; }
  .don-hero-cf-card { max-width: 100%; }
  .don-hero-bread { text-align: center; }
}

@media (max-width: 768px) {
  .don-5x1000-intro-grid { grid-template-columns: 1fr; }
  .don-bonifico-grid { grid-template-columns: 1fr; }
  .don-steps {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
  .don-step-arrow { display: none; }
  .don-alert-box { flex-direction: column; gap: 20px; }
  .don-alert-icon { width: 48px; height: 48px; font-size: 1.3rem; }
  .don-contact-inner { flex-direction: column; align-items: flex-start; }
  .don-cf-box { padding: 32px 24px; }
}
