/* --- PAGE HERO --- */
.page-hero {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}
.page-hero h1 { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 15px; }
.page-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: -30px auto 40px;
    font-size: 1.1rem;
}

/* --- DONATION CARDS --- */
.donation-methods {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.donation-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.donation-card.featured {
    border: 2px solid var(--secondary-color);
    background: #fffbeb;
}
.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.donation-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.donation-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* CF Box */
.cf-box {
    background: var(--white);
    border: 2px dashed var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.cf-box span { font-size: 0.9rem; color: var(--text-light); }
.cf-box strong { font-size: 1.3rem; color: var(--primary-color); letter-spacing: 1px; }
.btn-copy {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-copy:hover { background: #1d4ed8; }

/* Amount Buttons */
.donation-amounts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}
.amount-btn {
    flex: 1;
    min-width: 70px;
    padding: 10px;
    border: 2px solid #e5e7eb;
    background: var(--white);
    border-radius: 8px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}
.amount-btn:hover, .amount-btn:focus {
    border-color: var(--primary-color);
    background: #eff6ff;
    color: var(--primary-color);
}

/* --- DONATION FORM --- */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.form-group input, .form-group select {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}
.checkbox-group input { margin-top: 4px; }
.checkbox-group label { font-weight: 400; font-size: 0.9rem; color: var(--text-light); }
.checkbox-group a { color: var(--primary-color); text-decoration: underline; }

/* --- DOWNLOAD LIST (Riuso adattato) --- */
.download-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.download-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.download-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}
.download-icon { font-size: 2rem; margin-right: 20px; }
.download-info { flex: 1; }
.download-info h4 { font-family: var(--font-heading); margin-bottom: 4px; }
.download-info span { font-size: 0.85rem; color: var(--text-light); }
.btn-download {
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-download:hover { background: #1d4ed8; }

/* --- TESTIMONIALS --- */
.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}
.testimonial-card .quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}
.testimonial-card .quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}
.author { display: flex; align-items: center; gap: 15px; }
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}
.author strong { display: block; font-family: var(--font-heading); }
.author span { font-size: 0.85rem; color: var(--text-light); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .donation-methods { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cf-box { flex-direction: column; text-align: center; }
    .download-item { flex-direction: column; text-align: center; gap: 15px; }
    .download-icon { margin-right: 0; }
}