/* ===================================
   LA SCINTILLA - SITO WEB
   Colori dal brand: blu scuro #1a3a5c, arancione #e8941a
   =================================== */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
    line-height: 1.7;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1a3a5c; text-decoration: none; transition: color 0.2s; }
a:hover { color: #e8941a; }

/* CONTAINER */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* TYPOGRAPHY */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: #1a3a5c; line-height: 1.2; }

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26,58,92,0.08);
    transition: box-shadow 0.3s;
    overflow: hidden;
}
.header__sparkles {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; overflow: hidden;
}
.header__sparkle {
    position: absolute; width: 4px; height: 4px; border-radius: 50%;
    background: #e8941a;
    animation: sparkle-float 4s ease-in-out infinite;
    opacity: 0;
}
@keyframes sparkle-float {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 0.6; }
    50% { opacity: 0.3; transform: translateY(-8px) scale(1); }
    80% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-16px) scale(0.3); }
}
@keyframes sparkle-twinkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.7; transform: scale(1); }
}
.header--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header__logo img { height: 45px; }
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__link {
    font-size: 0.9rem; font-weight: 500; color: #475569;
    transition: color 0.2s; position: relative;
}
.header__link:hover { color: #1a3a5c; }
.header__link--cta {
    background: #e8941a; color: #fff !important; padding: 8px 20px;
    border-radius: 8px; font-weight: 600;
}
.header__link--cta:hover { background: #d07e10; color: #fff !important; }

/* Burger */
.header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.header__burger span { width: 24px; height: 2px; background: #1a3a5c; transition: all 0.3s; border-radius: 2px; }
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 10px;
    font-weight: 600; font-size: 0.95rem;
    transition: all 0.25s; cursor: pointer; border: 2px solid transparent;
}
.btn--primary { background: #e8941a; color: #fff; border-color: #e8941a; }
.btn--primary:hover { background: #d07e10; border-color: #d07e10; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,148,26,0.3); }
.btn--outline { background: transparent; color: #1a3a5c; border-color: #1a3a5c; }
.btn--outline:hover { background: #1a3a5c; color: #fff; }
.btn--white { background: #fff; color: #1a3a5c; border-color: #fff; }
.btn--white:hover { background: rgba(255,255,255,0.9); color: #1a3a5c; transform: translateY(-1px); }
.btn--large { padding: 16px 36px; font-size: 1.05rem; }
.btn--small { padding: 8px 18px; font-size: 0.85rem; }

/* ===================================
   HERO
   =================================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #fdf6ec 100%);
}
.hero--progetto {
    background: linear-gradient(135deg, #1a3a5c 0%, #244d73 60%, #2d6090 100%);
    padding: 160px 0 100px;
}
.hero--progetto .hero__tag,
.hero--progetto .hero__title,
.hero--progetto .hero__subtitle { color: #fff; }
.hero--progetto .hero__tag { color: rgba(255,255,255,0.7); }
.hero--progetto .hero__subtitle { color: rgba(255,255,255,0.85); }

.hero__inner { display: grid; grid-template-columns: 1fr; gap: 48px; }
.hero__tag { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #e8941a; margin-bottom: 12px; }
.hero__title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.hero__subtitle { font-size: 1.15rem; color: #64748b; max-width: 600px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 48px; border-top: 1px solid rgba(26,58,92,0.1); }
.hero__stat { text-align: center; }
.hero__stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: #1a3a5c; font-family: 'Playfair Display', serif; }
.hero__stat-label { font-size: 0.85rem; color: #64748b; }

/* ===================================
   SECTIONS
   =================================== */
.section { padding: 96px 0; }
.section--light { background: #f8fafc; }
.section--accent { background: linear-gradient(135deg, #1a3a5c, #244d73); color: #fff; }
.section--accent h2, .section--accent h3, .section--accent strong { color: #fff; }
.section--cta { background: linear-gradient(135deg, #e8941a, #d07e10); color: #fff; }
.section--dona { background: linear-gradient(135deg, #1a3a5c 0%, #0f2a42 100%); }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__tag { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: #e8941a; margin-bottom: 12px; }
.section__title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.section__subtitle { font-size: 1.05rem; color: #64748b; }

/* ===================================
   ABOUT
   =================================== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about__text p { margin-bottom: 16px; color: #475569; }
.about__text strong { color: #1a3a5c; }
.about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card {
    background: #f8fafc; border-radius: 12px; padding: 24px;
    border: 1px solid #e2e8f0; transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.value-card__icon { font-size: 1.8rem; margin-bottom: 8px; }
.value-card__title { font-size: 1.05rem; margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 700; }
.value-card__text { font-size: 0.88rem; color: #64748b; line-height: 1.5; }

/* ===================================
   MISSION QUOTE
   =================================== */
.mission-quote { text-align: center; padding: 24px 0; }
.mission-quote p { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; font-style: italic; margin-bottom: 16px; }
.mission-quote cite { font-size: 0.95rem; color: rgba(255,255,255,0.7); font-style: normal; }

/* ===================================
   SERVICES
   =================================== */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 56px; }
.service-card {
    background: #fff; border-radius: 16px; padding: 32px;
    border: 1px solid #e2e8f0; position: relative; overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.service-card__img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.service-card__badge {
    display: inline-block; background: #fdf6ec; color: #e8941a;
    font-size: 0.75rem; font-weight: 700; padding: 4px 12px;
    border-radius: 20px; margin-bottom: 16px;
}
.service-card__title { font-size: 1.3rem; margin-bottom: 10px; }
.service-card__desc { color: #64748b; margin-bottom: 16px; font-size: 0.95rem; }
.service-card__details { list-style: none; }
.service-card__details li { padding: 6px 0; font-size: 0.88rem; color: #475569; border-bottom: 1px solid #f1f5f9; }
.service-card__details li:last-child { border-bottom: none; }
.service-card__note { font-size: 0.82rem; color: #94a3b8; margin-top: 12px; font-style: italic; }

.services__extra { background: #fff; border-radius: 16px; padding: 36px; border: 1px solid #e2e8f0; }
.services__extra h3 { font-size: 1.2rem; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.services__extra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.extra-item strong { display: block; font-size: 0.9rem; color: #1a3a5c; margin-bottom: 4px; }
.extra-item p { font-size: 0.85rem; color: #64748b; }

/* ===================================
   GALLERIA
   =================================== */
.galleria__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    grid-auto-rows: 220px;
}
.galleria__item {
    position: relative; overflow: hidden; border-radius: 12px;
    cursor: pointer;
}
.galleria__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.galleria__item:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
}
.galleria__item--wide { grid-column: span 2; }
.galleria__item--tall { grid-row: span 2; }
.galleria__caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff; font-size: 0.85rem; font-weight: 500;
}

@media (max-width: 768px) {
    .galleria__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .galleria__item--wide { grid-column: span 2; }
    .galleria__item--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
    .galleria__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 8px; }
}

/* ===================================
   CTA PROGETTO (home)
   =================================== */
.cta__inner { display: flex; align-items: center; gap: 56px; }
.cta__text { flex: 1; }
.cta__title { color: #fff; font-size: 2.4rem; margin-bottom: 16px; }
.cta__desc { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 28px; }
.cta__numbers { display: flex; flex-direction: column; gap: 24px; }
.cta__stat { text-align: center; background: rgba(255,255,255,0.15); padding: 20px 32px; border-radius: 12px; }
.cta__stat-number { display: block; font-size: 2rem; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; }
.cta__stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

/* ===================================
   TIMELINE
   =================================== */
.storia__hero { text-align: center; margin-bottom: 48px; }
.storia__img { max-width: 600px; width: 100%; border-radius: 16px; margin: 0 auto; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.equipe__photo { text-align: center; margin-bottom: 36px; }
.equipe__img { max-width: 700px; width: 100%; border-radius: 16px; margin: 0 auto; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 60px; top: 0; bottom: 0; width: 2px; background: #e2e8f0; }
.timeline__item { display: flex; gap: 28px; margin-bottom: 36px; position: relative; }
.timeline__year {
    flex-shrink: 0; width: 60px; height: 60px;
    background: #f8fafc; border: 2px solid #e2e8f0;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700; color: #1a3a5c; z-index: 1;
}
.timeline__item--highlight .timeline__year { background: #e8941a; border-color: #e8941a; color: #fff; }
.timeline__content { padding-top: 8px; }
.timeline__content h3 { font-size: 1.1rem; margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 700; }
.timeline__content p { font-size: 0.92rem; color: #64748b; }

/* ===================================
   EQUIPE
   =================================== */
.equipe__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.equipe__card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e2e8f0; }
.equipe__role { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #e8941a; margin-bottom: 6px; }
.equipe__name { font-size: 1.1rem; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 700; color: #1a3a5c; }
.equipe__desc { font-size: 0.9rem; color: #64748b; }
.equipe__numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.equipe__stat { text-align: center; background: #fff; padding: 16px; border-radius: 10px; border: 1px solid #e2e8f0; font-size: 0.88rem; color: #475569; }
.equipe__stat strong { display: block; font-size: 1.3rem; color: #1a3a5c; margin-bottom: 2px; }

/* ===================================
   5x1000
   =================================== */
.cinquexmille { text-align: center; max-width: 600px; margin: 0 auto; }
.cinquexmille h2 { color: #fff; font-size: 2rem; margin-bottom: 16px; }
.cinquexmille p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.cinquexmille__cf {
    font-size: 2.5rem; font-weight: 700; color: #e8941a;
    font-family: 'Courier New', monospace; letter-spacing: 4px;
    background: rgba(255,255,255,0.1); padding: 16px 32px;
    border-radius: 12px; display: inline-block; margin-bottom: 16px;
}
.cinquexmille__note { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ===================================
   CONTATTI
   =================================== */
.contatti__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contatti__item { margin-bottom: 20px; }
.contatti__item strong { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; display: block; margin-bottom: 4px; }
.contatti__item p, .contatti__item a { font-size: 0.95rem; color: #1e293b; }

/* ===================================
   FOOTER
   =================================== */
.footer { background: #0f1b2d; color: #94a3b8; padding: 56px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 28px; text-align: center; }
.footer__name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #e8941a; margin-bottom: 8px; }
.footer__brand p { font-size: 0.85rem; }
.footer__links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: #94a3b8; font-size: 0.88rem; }
.footer__links a:hover { color: #e8941a; }
.footer__legal { font-size: 0.8rem; color: #64748b; }
.footer__legal p { margin-bottom: 4px; }

/* ===================================
   PROGETTO PAGE - Specific styles
   =================================== */
.progetto__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.progetto__text p { color: #475569; margin-bottom: 16px; }
.progetto__text strong { color: #1a3a5c; }
.progetto__img { border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.progetto__caption { font-size: 0.85rem; color: #94a3b8; text-align: center; margin-top: 12px; }

/* Perche grid */
.perche__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.perche__card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e2e8f0; }
.perche__card h3 { font-size: 1.1rem; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 700; color: #1a3a5c; }
.perche__card p { font-size: 0.92rem; color: #64748b; }

/* Modello */
.modello__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.modello__item { padding: 28px; }
.modello__number { font-size: 2.5rem; font-weight: 800; color: #e8941a; opacity: 0.3; font-family: 'Playfair Display', serif; margin-bottom: 8px; }
.modello__item h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 700; color: #1a3a5c; }
.modello__item p { font-size: 0.9rem; color: #64748b; }

/* Numeri */
.numeri__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.numeri__card { background: rgba(255,255,255,0.08); border-radius: 14px; padding: 24px; text-align: center; border: 1px solid rgba(255,255,255,0.1); }
.numeri__card--total { background: rgba(232,148,26,0.2); border-color: rgba(232,148,26,0.3); grid-column: 1 / -1; }
.numeri__amount { display: block; font-size: 1.6rem; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; margin-bottom: 4px; }
.numeri__label { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.numeri__detail { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* Piano finanziario */
.piano { max-width: 700px; margin: 0 auto; }
.piano__title { color: #fff; font-size: 1.3rem; margin-bottom: 24px; text-align: center; font-family: 'Inter', sans-serif; }
.piano__bar-item { margin-bottom: 16px; }
.piano__bar-header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.piano__bar { background: rgba(255,255,255,0.1); border-radius: 8px; height: 10px; overflow: hidden; }
.piano__bar-fill { height: 100%; border-radius: 8px; transition: width 1.5s ease-out; }
.piano__bar-fill[data-color="1"] { background: #4a90c4; }
.piano__bar-fill[data-color="2"] { background: #64b5a0; }
.piano__bar-fill[data-color="3"] { background: #9b7ec8; }
.piano__bar-fill[data-color="4"] { background: #e8c14a; }
.piano__bar-fill--highlight { background: #e8941a !important; }
.piano__bar-highlight { color: #e8941a !important; font-weight: 700; }
.piano__bar-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-style: italic; }

/* ===================================
   BEFORE / AFTER SLIDER
   =================================== */
.ba-slider {
    position: relative; width: 100%; max-width: 900px; margin: 40px auto 12px;
    border-radius: 16px; overflow: hidden; cursor: col-resize;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    aspect-ratio: auto;
    user-select: none; -webkit-user-select: none;
}
.ba-slider img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; pointer-events: none;
}
.ba-slider__after { position: relative; width: 100%; }
.ba-slider__before {
    position: absolute; top: 0; left: 0; height: 100%; width: 50%;
    overflow: hidden; z-index: 2;
}
.ba-slider__before img {
    position: absolute; top: 0; left: 0;
    width: 900px; max-width: none; height: 100%;
}
.ba-slider__handle {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 4px; z-index: 10;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: translateX(-50%);
    pointer-events: none;
}
.ba-slider__handle-line {
    flex: 1; width: 3px; background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.ba-slider__handle-circle {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; border: 3px solid #e8941a;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #1a3a5c; font-weight: 700;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    flex-shrink: 0;
}
.ba-slider__label {
    position: absolute; top: 16px; z-index: 5;
    background: rgba(0,0,0,0.6); color: #fff;
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; padding: 6px 14px; border-radius: 20px;
}
.ba-slider__label--before { left: 16px; }
.ba-slider__label--after { right: 16px; }
.ba-slider__caption {
    text-align: center; font-size: 0.88rem; color: #94a3b8;
    margin-bottom: 40px; font-style: italic;
}

@media (max-width: 768px) {
    .ba-slider__handle-circle { width: 36px; height: 36px; font-size: 1rem; }
    .ba-slider__before img { width: 100vw; }
}

/* Fasi */
.fasi__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fasi__card { background: #f8fafc; border-radius: 14px; padding: 24px; border: 2px solid #e2e8f0; position: relative; }
.fasi__card--active { border-color: #e8941a; background: #fdf6ec; }
.fasi__periodo { font-size: 0.78rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.fasi__title { font-size: 1rem; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 700; color: #1a3a5c; }
.fasi__card p { font-size: 0.88rem; color: #64748b; }
.fasi__status {
    display: inline-block; background: #e8941a; color: #fff;
    font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
    border-radius: 12px; margin-top: 12px; text-transform: uppercase; letter-spacing: 1px;
}

/* Mappa */
.mappa__container { text-align: center; }
.mappa__img { border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); max-width: 800px; margin: 0 auto; }

/* Precedente */
.precedente__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.precedente__text p { color: #475569; margin-bottom: 16px; }
.precedente__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.precedente__stat { background: #f8fafc; border-radius: 12px; padding: 24px; text-align: center; border: 1px solid #e2e8f0; }
.precedente__stat-number { display: block; font-size: 1.6rem; font-weight: 700; color: #1a3a5c; font-family: 'Playfair Display', serif; }
.precedente__stat-label { font-size: 0.82rem; color: #94a3b8; }

/* ===================================
   DONA
   =================================== */

/* Contatore donazioni */
.dona__counter {
    background: rgba(255,255,255,0.06); border-radius: 20px; padding: 36px 40px;
    border: 1px solid rgba(255,255,255,0.12); margin-bottom: 48px;
}
.dona__counter-bar-container { margin-bottom: 28px; }
.dona__counter-bar {
    height: 20px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden;
    position: relative;
}
.dona__counter-fill {
    height: 100%; background: linear-gradient(90deg, #e8941a, #f5b84d);
    border-radius: 10px; width: 0%; transition: width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.dona__counter-fill::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
    border-radius: 0 10px 10px 0;
}
.dona__counter-labels {
    display: flex; justify-content: space-between; margin-top: 8px;
    font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.dona__counter-stats {
    display: flex; gap: 48px; justify-content: center;
}
.dona__counter-stat { text-align: center; }
.dona__counter-amount {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700; color: #e8941a; line-height: 1.2;
}
.dona__counter-label {
    display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px;
}

@media (max-width: 600px) {
    .dona__counter { padding: 24px 20px; }
    .dona__counter-stats { flex-direction: column; gap: 20px; }
    .dona__counter-amount { font-size: 1.6rem; }
}

.dona__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.dona__card {
    background: rgba(255,255,255,0.06); border-radius: 16px; padding: 32px;
    border: 1px solid rgba(255,255,255,0.12);
}
.dona__card-icon { font-size: 2rem; margin-bottom: 12px; }
.dona__card h3 { color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 16px; }
.dona__card p, .dona__card small { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.dona__card strong { color: rgba(255,255,255,0.9); font-size: 0.82rem; display: block; margin-bottom: 2px; }
.dona__detail { margin-bottom: 16px; }
.dona__iban {
    font-family: 'Courier New', monospace; font-size: 1rem; color: #e8941a;
    background: rgba(255,255,255,0.06); padding: 8px 12px; border-radius: 6px;
    display: inline-block; margin: 4px 0;
}
.dona__cf {
    font-size: 2rem; font-weight: 700; color: #e8941a;
    font-family: 'Courier New', monospace; letter-spacing: 3px;
    background: rgba(255,255,255,0.06); padding: 12px 24px;
    border-radius: 10px; display: inline-block; margin: 12px 0;
}
.dona__contact a { color: #e8941a; }
.dona__contact p { margin-bottom: 6px; }

.dona__fiscale {
    background: rgba(255,255,255,0.06); border-radius: 12px; padding: 24px;
    text-align: center; margin-bottom: 48px; border: 1px solid rgba(255,255,255,0.08);
}
.dona__fiscale h3 { color: #fff; font-family: 'Inter', sans-serif; font-size: 1rem; margin-bottom: 8px; }
.dona__fiscale p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.dona__fiscale strong { color: rgba(255,255,255,0.9); }

.dona__suggerimenti { text-align: center; }
.dona__suggerimenti h3 { color: #fff; font-family: 'Inter', sans-serif; font-size: 1.2rem; margin-bottom: 28px; }
.dona__importi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dona__importo {
    background: rgba(255,255,255,0.06); border-radius: 12px; padding: 20px;
    border: 1px solid rgba(255,255,255,0.08); transition: all 0.2s;
}
.dona__importo:hover { background: rgba(255,255,255,0.1); border-color: #e8941a; transform: translateY(-2px); }
.dona__importo-cifra { display: block; font-size: 1.4rem; font-weight: 700; color: #e8941a; margin-bottom: 6px; }
.dona__importo-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* Trasparenza */
.trasparenza__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trasparenza__item { text-align: center; padding: 20px; }
.trasparenza__item h3 { font-size: 1.05rem; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 700; }
.trasparenza__item p { font-size: 0.9rem; color: #64748b; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .about__grid { grid-template-columns: 1fr; }
    .services__grid { grid-template-columns: 1fr; }
    .services__extra-grid { grid-template-columns: repeat(2, 1fr); }
    .equipe__grid { grid-template-columns: 1fr; }
    .equipe__numbers { grid-template-columns: repeat(2, 1fr); }
    .hero__numbers { grid-template-columns: repeat(2, 1fr); }
    .cta__inner { flex-direction: column; text-align: center; }
    .cta__numbers { flex-direction: row; }
    .progetto__intro { grid-template-columns: 1fr; }
    .modello__grid { grid-template-columns: repeat(2, 1fr); }
    .numeri__grid { grid-template-columns: repeat(2, 1fr); }
    .fasi__grid { grid-template-columns: repeat(2, 1fr); }
    .precedente__inner { grid-template-columns: 1fr; }
    .dona__grid { grid-template-columns: 1fr; }
    .dona__importi { grid-template-columns: repeat(2, 1fr); }
    .trasparenza__grid { grid-template-columns: 1fr; }
    .contatti__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .header__inner { height: 60px; }
    .header__logo img { height: 36px; }
    .header__nav {
        position: fixed; top: 60px; left: 0; right: 0;
        background: #fff; flex-direction: column; padding: 20px;
        gap: 12px; border-bottom: 1px solid #e2e8f0;
        transform: translateY(-120%); transition: transform 0.3s;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .header__nav.active { transform: translateY(0); }
    .header__burger { display: flex; }
    .header__link { font-size: 1rem; padding: 4px 0; }
    .header__link--cta { text-align: center; display: block; padding: 12px; }

    .section { padding: 48px 0; }
    .section__header { margin-bottom: 32px; }
    .section__title { font-size: 1.6rem; }
    .section__subtitle { font-size: 0.95rem; }

    .hero { padding: 100px 0 48px; }
    .hero--progetto { padding: 110px 0 56px; }
    .hero__title { font-size: 1.7rem; }
    .hero__subtitle { font-size: 1rem; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { text-align: center; justify-content: center; }
    .hero__numbers { grid-template-columns: repeat(2, 1fr); gap: 16px; padding-top: 32px; }
    .hero__stat-number { font-size: 2rem; }

    .about__values { grid-template-columns: 1fr; gap: 12px; }
    .value-card { padding: 20px; }

    .mission-quote p { font-size: 1.3rem; }

    .service-card { padding: 20px; }
    .service-card__img { height: 150px; }
    .services__extra { padding: 24px; }
    .services__extra-grid { grid-template-columns: 1fr; gap: 16px; }

    .cta__title { font-size: 1.8rem; }
    .cta__numbers { flex-direction: row; gap: 12px; }
    .cta__stat { padding: 16px 20px; }

    .timeline::before { left: 28px; }
    .timeline__year { width: 48px; height: 48px; font-size: 0.7rem; }
    .timeline__item { gap: 16px; margin-bottom: 24px; }
    .timeline__content h3 { font-size: 1rem; }
    .timeline__content p { font-size: 0.85rem; }

    .storia__img { border-radius: 12px; }

    .equipe__card { padding: 20px; }
    .equipe__numbers { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .cinquexmille h2 { font-size: 1.5rem; }
    .cinquexmille__cf { font-size: 1.8rem; letter-spacing: 2px; padding: 12px 20px; }

    .contatti__item p, .contatti__item a { font-size: 0.9rem; }

    .footer__links { gap: 16px; }
    .footer { padding: 40px 0 24px; }

    /* Progetto page mobile */
    .perche__grid { grid-template-columns: 1fr; }
    .modello__grid { grid-template-columns: 1fr; gap: 16px; }
    .modello__item { padding: 20px; }
    .numeri__grid { grid-template-columns: 1fr; gap: 12px; }
    .numeri__amount { font-size: 1.3rem; }
    .fasi__grid { grid-template-columns: 1fr; gap: 12px; }
    .precedente__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .precedente__stat { padding: 16px; }
    .precedente__stat-number { font-size: 1.3rem; }

    .dona__grid { grid-template-columns: 1fr; gap: 16px; }
    .dona__card { padding: 24px; }
    .dona__cf { font-size: 1.5rem; letter-spacing: 2px; padding: 10px 16px; }
    .dona__importi { grid-template-columns: 1fr; gap: 10px; }
    .dona__importo { padding: 16px; }

    .piano__bar-header { font-size: 0.8rem; }

    .trasparenza__grid { grid-template-columns: 1fr; }

    .ba-slider { border-radius: 10px; }
    .ba-slider__handle-circle { width: 32px; height: 32px; font-size: 0.9rem; }
    .ba-slider__label { font-size: 0.7rem; padding: 4px 10px; top: 10px; }
    .ba-slider__caption { font-size: 0.82rem; }

    .mappa__img { border-radius: 10px; }
}

@media (max-width: 380px) {
    .hero__title { font-size: 1.4rem; }
    .hero__numbers { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero__stat-number { font-size: 1.6rem; }
    .btn { padding: 10px 20px; font-size: 0.88rem; }
    .cinquexmille__cf { font-size: 1.4rem; }
    .dona__cf { font-size: 1.2rem; }
    .cta__numbers { flex-direction: column; }
}