/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.faq-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.4s ease;
}
.faq-item.is-active .faq-content {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}
.faq-item.is-active {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--accent);
}

/* Interactive Map/Footprint */
.footprint-wrapper {
    position: relative;
    background: radial-gradient(circle at center, #f1f5f9 0%, #ffffff 100%);
    border-radius: 2rem;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}
.map-point {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(0, 179, 134, 0.4);
    animation: ripple 2s infinite;
}
@keyframes ripple {
    0% { box-shadow: 0 0 0 0 rgba(0, 179, 134, 0.4); }
    100% { box-shadow: 0 0 0 20px rgba(0, 179, 134, 0); }
}

/* Counters */
.counter-box {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}
.counter-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}\n

